aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs
diff options
context:
space:
mode:
authorJeff Layton <jlayton@redhat.com>2010-07-06 20:43:08 -0400
committerSteve French <sfrench@us.ibm.com>2010-08-02 12:40:35 +0000
commit8913007e67106597fed4b9dd3787e8dca6915a83 (patch)
tree83fdd597cdf1a5a5871a5952c85d2c0766353091 /fs/cifs
parentcifs: clean up cifs_find_smb_ses (try #2) (diff)
downloadlinux-dev-8913007e67106597fed4b9dd3787e8dca6915a83.tar.xz
linux-dev-8913007e67106597fed4b9dd3787e8dca6915a83.zip
cifs: remove unused cifsUidInfo struct
Signed-off-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r--fs/cifs/cifsglob.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h
index 7b91cb4f0da4..793c8e3a0e53 100644
--- a/fs/cifs/cifsglob.h
+++ b/fs/cifs/cifsglob.h
@@ -197,28 +197,12 @@ struct TCP_Server_Info {
};
/*
- * The following is our shortcut to user information. We surface the uid,
- * and name. We always get the password on the fly in case it
- * has changed. We also hang a list of sessions owned by this user off here.
- */
-struct cifsUidInfo {
- struct list_head userList;
- struct list_head sessionList; /* SMB sessions for this user */
- uid_t linux_uid;
- char user[MAX_USERNAME_SIZE + 1]; /* ascii name of user */
- /* BB may need ptr or callback for PAM or WinBind info */
-};
-
-/*
* Session structure. One of these for each uid session with a particular host
*/
struct cifsSesInfo {
struct list_head smb_ses_list;
struct list_head tcon_list;
struct mutex session_mutex;
-#if 0
- struct cifsUidInfo *uidInfo; /* pointer to user info */
-#endif
struct TCP_Server_Info *server; /* pointer to server info */
int ses_count; /* reference counter */
enum statusEnum status;