Lines Matching defs:cifsFileInfo
1464 struct cifsFileInfo { struct
1466 struct list_head tlist; /* pointer to next fid owned by tcon */
1467 struct list_head flist; /* next fid (file instance) for this inode */
1469 struct cifs_fid_locks *llist; /* brlocks held by this fid */
1470 kuid_t uid; /* allows finding which FileInfo structure */
1471 __u32 pid; /* process id who opened file */
1472 struct cifs_fid fid; /* file id from remote */
1473 struct list_head rlist; /* reconnect list */
1476 struct dentry *dentry;
1477 struct tcon_link *tlink;
1478 unsigned int f_flags;
1479 bool invalidHandle:1; /* file closed via session abend */
1480 bool swapfile:1;
1481 bool oplock_break_cancelled:1;
1482 bool status_file_deleted:1; /* file has been deleted */
1483 bool offload:1; /* offload final part of _put to a wq */
1484 __u16 oplock_epoch; /* epoch from the lease break */
1485 __u32 oplock_level; /* oplock/lease level from the lease break */
1486 int count;
1487 spinlock_t file_info_lock; /* protects four flag/count fields above */
1511 struct cifsFileInfo *cfile; argument