Lines Matching defs:cifs_tcon
1089 struct cifs_tcon { struct
1090 struct list_head tcon_list;
1091 int tc_count;
1092 struct list_head rlist; /* reconnect list */
1093 atomic_t num_local_opens; /* num of all opens including disconnected */
1094 atomic_t num_remote_opens; /* num of all network opens on server */
1095 struct list_head openFileList;
1096 spinlock_t open_file_lock; /* protects list above */
1097 struct cifs_ses *ses; /* pointer to session associated with */
1098 char treeName[MAX_TREE_SIZE + 1]; /* UNC name of resource in ASCII */
1099 char *nativeFileSystem;
1100 char *password; /* for share-level security */
1101 __u32 tid; /* The 4 byte tree id */
1102 __u16 Flags; /* optional support bits */
1103 enum statusEnum tidStatus;
1104 atomic_t num_smbs_sent;
1105 union {
1133 } stats;
1134 __u64 bytes_read;
1135 __u64 bytes_written;
1136 spinlock_t stat_lock; /* protects the two fields above */
1137 FILE_SYSTEM_DEVICE_INFO fsDevInfo;
1138 FILE_SYSTEM_ATTRIBUTE_INFO fsAttrInfo; /* ok if fs name truncated */
1139 FILE_SYSTEM_UNIX_INFO fsUnixInfo;
1140 bool ipc:1; /* set if connection to IPC$ share (always also pipe) */
1141 bool pipe:1; /* set if connection to pipe share */
1142 bool print:1; /* set if connection to printer share */
1143 bool retry:1;
1144 bool nocase:1;
1145 bool nohandlecache:1; /* if strange server resource prob can turn off */
1146 bool nodelete:1;
1147 bool seal:1; /* transport encryption for this mounted share */
1148 bool unix_ext:1; /* if false disable Linux extensions to CIFS protocol
1150 bool posix_extensions; /* if true SMB3.11 posix extensions enabled */
1151 bool local_lease:1; /* check leases (only) on local system not remote */
1152 bool broken_posix_open; /* e.g. Samba server versions < 3.3.2, 3.2.9 */
1153 bool broken_sparse_sup; /* if server or share does not support sparse */
1154 bool need_reconnect:1; /* connection reset, tid now invalid */
1155 bool need_reopen_files:1; /* need to reopen tcon file handles */
1156 bool use_resilient:1; /* use resilient instead of durable handles */
1157 bool use_persistent:1; /* use persistent instead of durable handles */
1158 bool no_lease:1; /* Do not request leases on files or directories */
1159 __le32 capabilities;
1160 __u32 share_flags;
1161 __u32 maximal_access;
1162 __u32 vol_serial_number;
1163 __le64 vol_create_time;
1164 __u64 snapshot_time; /* for timewarp tokens - timestamp of snapshot */
1165 __u32 handle_timeout; /* persistent and durable handle timeout in ms */
1166 __u32 ss_flags; /* sector size flags */
1167 __u32 perf_sector_size; /* best sector size for perf */
1168 __u32 max_chunks;
1169 __u32 max_bytes_chunk;
1170 __u32 max_bytes_copy;
1172 u64 resource_id; /* server resource id */
1173 struct fscache_cookie *fscache; /* cookie for share */
1175 struct list_head pending_opens; /* list of incomplete opens */
1176 struct cached_fid crfid; /* Cached root fid */
1200 struct cifs_tcon *tl_tcon; argument