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