Lines Matching defs:cifsFileInfo
1021 struct cifsFileInfo { struct
1022 struct list_head tlist; /* pointer to next fid owned by tcon */
1023 struct list_head flist; /* next fid (file instance) for this inode */
1024 struct cifs_fid_locks *llist; /* brlocks held by this fid */
1025 kuid_t uid; /* allows finding which FileInfo structure */
1026 __u32 pid; /* process id who opened file */
1027 struct cifs_fid fid; /* file id from remote */
1030 struct dentry *dentry;
1031 unsigned int f_flags;
1032 struct tcon_link *tlink;
1033 bool invalidHandle:1; /* file closed via session abend */
1034 bool oplock_break_cancelled:1;
1035 int count; /* refcount protected by cifs_file_list_lock */
1036 struct mutex fh_mutex; /* prevents reopen race after dead ses*/
1060 struct cifsFileInfo *cfile; argument