Lines Matching defs:cifs_tcon

826 struct cifs_tcon {  struct
827 struct list_head tcon_list;
828 int tc_count;
829 struct list_head openFileList;
830 struct cifs_ses *ses; /* pointer to session associated with */
831 char treeName[MAX_TREE_SIZE + 1]; /* UNC name of resource in ASCII */
832 char *nativeFileSystem;
833 char *password; /* for share-level security */
834 __u32 tid; /* The 4 byte tree id */
835 __u16 Flags; /* optional support bits */
836 enum statusEnum tidStatus;
838 atomic_t num_smbs_sent;
839 union {
869 } stats;
871 unsigned long long time_writes;
872 unsigned long long time_reads;
873 unsigned long long time_opens;
874 unsigned long long time_deletes;
875 unsigned long long time_closes;
876 unsigned long long time_mkdirs;
877 unsigned long long time_rmdirs;
878 unsigned long long time_renames;
879 unsigned long long time_t2renames;
880 unsigned long long time_ffirst;
881 unsigned long long time_fnext;
882 unsigned long long time_fclose;
884 __u64 bytes_read;
885 __u64 bytes_written;
886 spinlock_t stat_lock;
888 FILE_SYSTEM_DEVICE_INFO fsDevInfo;
889 FILE_SYSTEM_ATTRIBUTE_INFO fsAttrInfo; /* ok if fs name truncated */
890 FILE_SYSTEM_UNIX_INFO fsUnixInfo;
891 bool ipc:1; /* set if connection to IPC$ eg for RPC/PIPES */
892 bool retry:1;
893 bool nocase:1;
894 bool seal:1; /* transport encryption for this mounted share */
895 bool unix_ext:1; /* if false disable Linux extensions to CIFS protocol
897 bool local_lease:1; /* check leases (only) on local system not remote */
898 bool broken_posix_open; /* e.g. Samba server versions < 3.3.2, 3.2.9 */
899 bool broken_sparse_sup; /* if server or share does not support sparse */
900 bool need_reconnect:1; /* connection reset, tid now invalid */
901 bool use_resilient:1; /* use resilient instead of durable handles */
902 bool use_persistent:1; /* use persistent instead of durable handles */
904 bool print:1; /* set if connection to printer share */
905 bool bad_network_name:1; /* set if ret status STATUS_BAD_NETWORK_NAME */
906 __le32 capabilities;
907 __u32 share_flags;
908 __u32 maximal_access;
909 __u32 vol_serial_number;
910 __le64 vol_create_time;
911 __u32 ss_flags; /* sector size flags */
912 __u32 perf_sector_size; /* best sector size for perf */
913 __u32 max_chunks;
914 __u32 max_bytes_chunk;
915 __u32 max_bytes_copy;
940 struct cifs_tcon *tl_tcon; argument