Lines Matching defs:cifsFileInfo
1229 struct cifsFileInfo { struct
1231 struct list_head tlist; /* pointer to next fid owned by tcon */
1232 struct list_head flist; /* next fid (file instance) for this inode */
1234 struct cifs_fid_locks *llist; /* brlocks held by this fid */
1235 kuid_t uid; /* allows finding which FileInfo structure */
1236 __u32 pid; /* process id who opened file */
1237 struct cifs_fid fid; /* file id from remote */
1238 struct list_head rlist; /* reconnect list */
1241 struct dentry *dentry;
1242 struct tcon_link *tlink;
1243 unsigned int f_flags;
1244 bool invalidHandle:1; /* file closed via session abend */
1245 bool swapfile:1;
1246 bool oplock_break_cancelled:1;
1247 unsigned int oplock_epoch; /* epoch from the lease break */
1248 __u32 oplock_level; /* oplock/lease level from the lease break */
1249 int count;
1250 spinlock_t file_info_lock; /* protects four flag/count fields above */
1251 struct mutex fh_mutex; /* prevents reopen race after dead ses*/
1252 struct cifs_search_info srch_inf;
1253 struct work_struct oplock_break; /* work for oplock breaks */
1277 struct cifsFileInfo *cfile; argument