Lines Matching defs:cifsFileInfo
1305 struct cifsFileInfo { struct
1307 struct list_head tlist; /* pointer to next fid owned by tcon */
1308 struct list_head flist; /* next fid (file instance) for this inode */
1310 struct cifs_fid_locks *llist; /* brlocks held by this fid */
1311 kuid_t uid; /* allows finding which FileInfo structure */
1312 __u32 pid; /* process id who opened file */
1313 struct cifs_fid fid; /* file id from remote */
1314 struct list_head rlist; /* reconnect list */
1317 struct dentry *dentry;
1318 struct tcon_link *tlink;
1319 unsigned int f_flags;
1320 bool invalidHandle:1; /* file closed via session abend */
1321 bool swapfile:1;
1322 bool oplock_break_cancelled:1;
1323 unsigned int oplock_epoch; /* epoch from the lease break */
1324 __u32 oplock_level; /* oplock/lease level from the lease break */
1325 int count;
1326 spinlock_t file_info_lock; /* protects four flag/count fields above */
1327 struct mutex fh_mutex; /* prevents reopen race after dead ses*/
1351 struct cifsFileInfo *cfile; argument