Lines Matching defs:cifsTconInfo

296 struct cifsTconInfo {  struct
297 struct list_head tcon_list;
298 int tc_count;
299 struct list_head openFileList;
300 struct cifsSesInfo *ses; /* pointer to session associated with */
301 char treeName[MAX_TREE_SIZE + 1]; /* UNC name of resource in ASCII */
302 char *nativeFileSystem;
303 char *password; /* for share-level security */
304 __u16 tid; /* The 2 byte tree id */
305 __u16 Flags; /* optional support bits */
306 enum statusEnum tidStatus;
308 atomic_t num_smbs_sent;
309 atomic_t num_writes;
310 atomic_t num_reads;
311 atomic_t num_flushes;
312 atomic_t num_oplock_brks;
313 atomic_t num_opens;
314 atomic_t num_closes;
315 atomic_t num_deletes;
316 atomic_t num_mkdirs;
317 atomic_t num_posixopens;
318 atomic_t num_posixmkdirs;
319 atomic_t num_rmdirs;
320 atomic_t num_renames;
321 atomic_t num_t2renames;
322 atomic_t num_ffirst;
323 atomic_t num_fnext;
324 atomic_t num_fclose;
325 atomic_t num_hardlinks;
326 atomic_t num_symlinks;
327 atomic_t num_locks;
328 atomic_t num_acl_get;
329 atomic_t num_acl_set;
331 unsigned long long time_writes;
332 unsigned long long time_reads;
333 unsigned long long time_opens;
334 unsigned long long time_deletes;
335 unsigned long long time_closes;
336 unsigned long long time_mkdirs;
337 unsigned long long time_rmdirs;
338 unsigned long long time_renames;
339 unsigned long long time_t2renames;
340 unsigned long long time_ffirst;
341 unsigned long long time_fnext;
342 unsigned long long time_fclose;
344 __u64 bytes_read;
345 __u64 bytes_written;
346 spinlock_t stat_lock;
348 FILE_SYSTEM_DEVICE_INFO fsDevInfo;
349 FILE_SYSTEM_ATTRIBUTE_INFO fsAttrInfo; /* ok if fs name truncated */
350 FILE_SYSTEM_UNIX_INFO fsUnixInfo;
351 bool ipc:1; /* set if connection to IPC$ eg for RPC/PIPES */
352 bool retry:1;
353 bool nocase:1;
354 bool seal:1; /* transport encryption for this mounted share */
355 bool unix_ext:1; /* if false disable Linux extensions to CIFS protocol
357 bool local_lease:1; /* check leases (only) on local system not remote */
358 bool broken_posix_open; /* e.g. Samba server versions < 3.3.2, 3.2.9 */
382 struct cifsTconInfo *tl_tcon; argument