Lines Matching defs:cifsFileInfo
1036 struct cifsFileInfo { struct
1037 struct list_head tlist; /* pointer to next fid owned by tcon */
1038 struct list_head flist; /* next fid (file instance) for this inode */
1039 struct cifs_fid_locks *llist; /* brlocks held by this fid */
1040 kuid_t uid; /* allows finding which FileInfo structure */
1041 __u32 pid; /* process id who opened file */
1042 struct cifs_fid fid; /* file id from remote */
1045 struct dentry *dentry;
1046 unsigned int f_flags;
1047 struct tcon_link *tlink;
1048 bool invalidHandle:1; /* file closed via session abend */
1049 bool oplock_break_cancelled:1;
1050 int count; /* refcount protected by cifs_file_list_lock */
1051 struct mutex fh_mutex; /* prevents reopen race after dead ses*/
1075 struct cifsFileInfo *cfile; argument