aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/cifsglob.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/cifs/cifsglob.h')
-rw-r--r--fs/cifs/cifsglob.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h
index 313f7bfedec7..631a99f72f22 100644
--- a/fs/cifs/cifsglob.h
+++ b/fs/cifs/cifsglob.h
@@ -195,14 +195,14 @@ struct cifsUidInfo {
195 * Session structure. One of these for each uid session with a particular host 195 * Session structure. One of these for each uid session with a particular host
196 */ 196 */
197struct cifsSesInfo { 197struct cifsSesInfo {
198 struct list_head cifsSessionList; 198 struct list_head smb_ses_list;
199 struct list_head tcon_list; 199 struct list_head tcon_list;
200 struct semaphore sesSem; 200 struct semaphore sesSem;
201#if 0 201#if 0
202 struct cifsUidInfo *uidInfo; /* pointer to user info */ 202 struct cifsUidInfo *uidInfo; /* pointer to user info */
203#endif 203#endif
204 struct TCP_Server_Info *server; /* pointer to server info */ 204 struct TCP_Server_Info *server; /* pointer to server info */
205 atomic_t inUse; /* # of mounts (tree connections) on this ses */ 205 int ses_count; /* reference counter */
206 enum statusEnum status; 206 enum statusEnum status;
207 unsigned overrideSecFlg; /* if non-zero override global sec flags */ 207 unsigned overrideSecFlg; /* if non-zero override global sec flags */
208 __u16 ipc_tid; /* special tid for connection to IPC share */ 208 __u16 ipc_tid; /* special tid for connection to IPC share */
@@ -602,8 +602,6 @@ GLOBAL_EXTERN struct list_head cifs_tcp_ses_list;
602 602
603/* protects cifs_tcp_ses_list and srv_count for each tcp session */ 603/* protects cifs_tcp_ses_list and srv_count for each tcp session */
604GLOBAL_EXTERN rwlock_t cifs_tcp_ses_lock; 604GLOBAL_EXTERN rwlock_t cifs_tcp_ses_lock;
605
606GLOBAL_EXTERN struct list_head GlobalSMBSessionList; /* BB to be removed by jl*/
607GLOBAL_EXTERN struct list_head GlobalTreeConnectionList; /* BB to be removed */ 605GLOBAL_EXTERN struct list_head GlobalTreeConnectionList; /* BB to be removed */
608GLOBAL_EXTERN rwlock_t GlobalSMBSeslock; /* protects list inserts on 3 above */ 606GLOBAL_EXTERN rwlock_t GlobalSMBSeslock; /* protects list inserts on 3 above */
609 607