Lines Matching defs:cifsFileInfo
1360 struct cifsFileInfo { struct
1362 struct list_head tlist; /* pointer to next fid owned by tcon */
1363 struct list_head flist; /* next fid (file instance) for this inode */
1365 struct cifs_fid_locks *llist; /* brlocks held by this fid */
1366 kuid_t uid; /* allows finding which FileInfo structure */
1367 __u32 pid; /* process id who opened file */
1368 struct cifs_fid fid; /* file id from remote */
1369 struct list_head rlist; /* reconnect list */
1372 struct dentry *dentry;
1373 struct tcon_link *tlink;
1374 unsigned int f_flags;
1375 bool invalidHandle:1; /* file closed via session abend */
1376 bool swapfile:1;
1377 bool oplock_break_cancelled:1;
1378 unsigned int oplock_epoch; /* epoch from the lease break */
1379 __u32 oplock_level; /* oplock/lease level from the lease break */
1380 int count;
1381 spinlock_t file_info_lock; /* protects four flag/count fields above */
1382 struct mutex fh_mutex; /* prevents reopen race after dead ses*/
1383 struct cifs_search_info srch_inf;
1384 struct work_struct oplock_break; /* work for oplock breaks */
1385 struct work_struct put; /* work for the final part of _put */
1409 struct cifsFileInfo *cfile; argument