Lines Matching defs:cifs_tcon
814 struct cifs_tcon { struct
815 struct list_head tcon_list;
816 int tc_count;
817 struct list_head openFileList;
818 struct cifs_ses *ses; /* pointer to session associated with */
819 char treeName[MAX_TREE_SIZE + 1]; /* UNC name of resource in ASCII */
820 char *nativeFileSystem;
821 char *password; /* for share-level security */
822 __u32 tid; /* The 4 byte tree id */
823 __u16 Flags; /* optional support bits */
824 enum statusEnum tidStatus;
826 atomic_t num_smbs_sent;
827 union {
857 } stats;
859 unsigned long long time_writes;
860 unsigned long long time_reads;
861 unsigned long long time_opens;
862 unsigned long long time_deletes;
863 unsigned long long time_closes;
864 unsigned long long time_mkdirs;
865 unsigned long long time_rmdirs;
866 unsigned long long time_renames;
867 unsigned long long time_t2renames;
868 unsigned long long time_ffirst;
869 unsigned long long time_fnext;
870 unsigned long long time_fclose;
872 __u64 bytes_read;
873 __u64 bytes_written;
874 spinlock_t stat_lock;
876 FILE_SYSTEM_DEVICE_INFO fsDevInfo;
877 FILE_SYSTEM_ATTRIBUTE_INFO fsAttrInfo; /* ok if fs name truncated */
878 FILE_SYSTEM_UNIX_INFO fsUnixInfo;
879 bool ipc:1; /* set if connection to IPC$ eg for RPC/PIPES */
880 bool retry:1;
881 bool nocase:1;
882 bool seal:1; /* transport encryption for this mounted share */
883 bool unix_ext:1; /* if false disable Linux extensions to CIFS protocol
885 bool local_lease:1; /* check leases (only) on local system not remote */
886 bool broken_posix_open; /* e.g. Samba server versions < 3.3.2, 3.2.9 */
887 bool broken_sparse_sup; /* if server or share does not support sparse */
888 bool need_reconnect:1; /* connection reset, tid now invalid */
890 bool print:1; /* set if connection to printer share */
891 bool bad_network_name:1; /* set if ret status STATUS_BAD_NETWORK_NAME */
892 __le32 capabilities;
893 __u32 share_flags;
894 __u32 maximal_access;
895 __u32 vol_serial_number;
896 __le64 vol_create_time;
897 __u32 ss_flags; /* sector size flags */
898 __u32 perf_sector_size; /* best sector size for perf */
899 __u32 max_chunks;
900 __u32 max_bytes_chunk;
901 __u32 max_bytes_copy;
926 struct cifs_tcon *tl_tcon; argument