Lines Matching defs:cifs_tcon

1143 struct cifs_tcon {  struct
1144 struct list_head tcon_list;
1145 int tc_count;
1146 struct list_head rlist; /* reconnect list */
1147 spinlock_t tc_lock; /* protect anything here that is not protected */
1148 atomic_t num_local_opens; /* num of all opens including disconnected */
1149 atomic_t num_remote_opens; /* num of all network opens on server */
1150 struct list_head openFileList;
1151 spinlock_t open_file_lock; /* protects list above */
1152 struct cifs_ses *ses; /* pointer to session associated with */
1153 char tree_name[MAX_TREE_SIZE + 1]; /* UNC name of resource in ASCII */
1154 char *nativeFileSystem;
1155 char *password; /* for share-level security */
1156 __u32 tid; /* The 4 byte tree id */
1157 __u16 Flags; /* optional support bits */
1158 enum tid_status_enum status;
1159 atomic_t num_smbs_sent;
1160 union {
1188 } stats;
1189 __u64 bytes_read;
1190 __u64 bytes_written;
1191 spinlock_t stat_lock; /* protects the two fields above */
1192 FILE_SYSTEM_DEVICE_INFO fsDevInfo;
1193 FILE_SYSTEM_ATTRIBUTE_INFO fsAttrInfo; /* ok if fs name truncated */
1194 FILE_SYSTEM_UNIX_INFO fsUnixInfo;
1195 bool ipc:1; /* set if connection to IPC$ share (always also pipe) */
1196 bool pipe:1; /* set if connection to pipe share */
1197 bool print:1; /* set if connection to printer share */
1198 bool retry:1;
1199 bool nocase:1;
1200 bool nohandlecache:1; /* if strange server resource prob can turn off */
1201 bool nodelete:1;
1202 bool seal:1; /* transport encryption for this mounted share */
1203 bool unix_ext:1; /* if false disable Linux extensions to CIFS protocol
1205 bool posix_extensions; /* if true SMB3.11 posix extensions enabled */
1206 bool local_lease:1; /* check leases (only) on local system not remote */
1207 bool broken_posix_open; /* e.g. Samba server versions < 3.3.2, 3.2.9 */
1208 bool broken_sparse_sup; /* if server or share does not support sparse */
1209 bool need_reconnect:1; /* connection reset, tid now invalid */
1210 bool need_reopen_files:1; /* need to reopen tcon file handles */
1211 bool use_resilient:1; /* use resilient instead of durable handles */
1212 bool use_persistent:1; /* use persistent instead of durable handles */
1213 bool no_lease:1; /* Do not request leases on files or directories */
1214 bool use_witness:1; /* use witness protocol */
1215 __le32 capabilities;
1216 __u32 share_flags;
1217 __u32 maximal_access;
1218 __u32 vol_serial_number;
1219 __le64 vol_create_time;
1220 __u64 snapshot_time; /* for timewarp tokens - timestamp of snapshot */
1221 __u32 handle_timeout; /* persistent and durable handle timeout in ms */
1222 __u32 ss_flags; /* sector size flags */
1223 __u32 perf_sector_size; /* best sector size for perf */
1224 __u32 max_chunks;
1225 __u32 max_bytes_chunk;
1226 __u32 max_bytes_copy;
1228 u64 resource_id; /* server resource id */
1229 struct fscache_volume *fscache; /* cookie for share */
1231 struct list_head pending_opens; /* list of incomplete opens */
1255 struct cifs_tcon *tl_tcon; argument