4 * Copyright (C) 1995 by Paal-Kr. Engstad and Volker Lendecke
5 * Copyright (C) 1997 by Volker Lendecke
9 #ifndef _LINUX_SMB_FS_I
10 #define _LINUX_SMB_FS_I
12 #include <linux/types.h>
16 * smb fs inode data (in memory only)
18 struct smb_inode_info {
21 * file handles are local to a connection. A file is open if
22 * (open == generation).
24 unsigned int open; /* open generation */
25 __u16 fileid; /* What id to handle a file with? */
26 __u16 attr; /* Attribute fields, DOS value */
28 __u16 access; /* Access mode */
30 unsigned long oldmtime; /* last time refreshed */
31 unsigned long closed; /* timestamp when closed */
32 unsigned openers; /* number of fileid users */
34 struct inode vfs_inode; /* must be at the end */