Lines Matching defs:cifsFileInfo
1405 struct cifsFileInfo { struct
1407 struct list_head tlist; /* pointer to next fid owned by tcon */
1408 struct list_head flist; /* next fid (file instance) for this inode */
1410 struct cifs_fid_locks *llist; /* brlocks held by this fid */
1411 kuid_t uid; /* allows finding which FileInfo structure */
1412 __u32 pid; /* process id who opened file */
1413 struct cifs_fid fid; /* file id from remote */
1414 struct list_head rlist; /* reconnect list */
1417 struct dentry *dentry;
1418 struct tcon_link *tlink;
1419 unsigned int f_flags;
1420 bool invalidHandle:1; /* file closed via session abend */
1421 bool swapfile:1;
1422 bool oplock_break_cancelled:1;
1423 unsigned int oplock_epoch; /* epoch from the lease break */
1424 __u32 oplock_level; /* oplock/lease level from the lease break */
1425 int count;
1426 spinlock_t file_info_lock; /* protects four flag/count fields above */
1427 struct mutex fh_mutex; /* prevents reopen race after dead ses*/
1428 struct cifs_search_info srch_inf;
1429 struct work_struct oplock_break; /* work for oplock breaks */
1430 struct work_struct put; /* work for the final part of _put */
1454 struct cifsFileInfo *cfile; argument