Lines Matching defs:cifsFileInfo
1389 struct cifsFileInfo { struct
1391 struct list_head tlist; /* pointer to next fid owned by tcon */
1392 struct list_head flist; /* next fid (file instance) for this inode */
1394 struct cifs_fid_locks *llist; /* brlocks held by this fid */
1395 kuid_t uid; /* allows finding which FileInfo structure */
1396 __u32 pid; /* process id who opened file */
1397 struct cifs_fid fid; /* file id from remote */
1398 struct list_head rlist; /* reconnect list */
1401 struct dentry *dentry;
1402 struct tcon_link *tlink;
1403 unsigned int f_flags;
1404 bool invalidHandle:1; /* file closed via session abend */
1405 bool swapfile:1;
1406 bool oplock_break_cancelled:1;
1407 unsigned int oplock_epoch; /* epoch from the lease break */
1408 __u32 oplock_level; /* oplock/lease level from the lease break */
1409 int count;
1410 spinlock_t file_info_lock; /* protects four flag/count fields above */
1411 struct mutex fh_mutex; /* prevents reopen race after dead ses*/
1412 struct cifs_search_info srch_inf;
1413 struct work_struct oplock_break; /* work for oplock breaks */
1414 struct work_struct put; /* work for the final part of _put */
1438 struct cifsFileInfo *cfile; argument