Lines Matching defs:cifsFileInfo
1430 struct cifsFileInfo { struct
1432 struct list_head tlist; /* pointer to next fid owned by tcon */
1433 struct list_head flist; /* next fid (file instance) for this inode */
1435 struct cifs_fid_locks *llist; /* brlocks held by this fid */
1436 kuid_t uid; /* allows finding which FileInfo structure */
1437 __u32 pid; /* process id who opened file */
1438 struct cifs_fid fid; /* file id from remote */
1439 struct list_head rlist; /* reconnect list */
1442 struct dentry *dentry;
1443 struct tcon_link *tlink;
1444 unsigned int f_flags;
1445 bool invalidHandle:1; /* file closed via session abend */
1446 bool swapfile:1;
1447 bool oplock_break_cancelled:1;
1448 bool status_file_deleted:1; /* file has been deleted */
1449 bool offload:1; /* offload final part of _put to a wq */
1450 __u16 oplock_epoch; /* epoch from the lease break */
1451 __u32 oplock_level; /* oplock/lease level from the lease break */
1452 int count;
1453 spinlock_t file_info_lock; /* protects four flag/count fields above */
1454 struct mutex fh_mutex; /* prevents reopen race after dead ses*/
1455 struct cifs_search_info srch_inf;
1456 struct work_struct oplock_break; /* work for oplock breaks */
1457 struct work_struct put; /* work for the final part of _put */
1458 struct work_struct serverclose; /* work for serverclose */
1482 struct cifsFileInfo *cfile; argument