ftp.nice.ch/pub/next/unix/network/system/sharity-light.0.4.s.tar.gz#/rumba.0.4.s/include/linux/smb_fs_i.h

This is smb_fs_i.h in view mode; [Download] [Up]

/*
 *  smb_fs_i.h
 *
 *  Copyright (C) 1995 by Paal-Kr. Engstad and Volker Lendecke
 *
 */

#ifndef _LINUX_SMB_FS_I
#define _LINUX_SMB_FS_I

#ifdef __KERNEL__
#include <linux/smb.h>

enum smb_inode_state {
        INODE_VALID = 19,       /* Inode currently in use */
        INODE_LOOKED_UP,        /* directly before iget */
        INODE_CACHED,           /* in a path to an inode which is in use */
        INODE_INVALID
};

/*
 * smb fs inode data (in memory only)
 */
struct smb_inode_info {
        enum smb_inode_state state;
        int nused;              /* for directories:
                                   number of references in memory */
        struct smb_inode_info *dir;
        struct smb_inode_info *next, *prev;
        struct smb_dirent finfo;
};

#endif
#endif

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.