diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-06-17 09:42:43 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-06-24 18:39:42 -0400 |
commit | d757d71bfc30669a500b72792067e8d1c5d401a5 (patch) | |
tree | faa2fc95514ad2629d89230d1b13f1c6f865c75e /fs/cifs/connect.c | |
parent | 98ab494dd1d25388981114057cf9446250cc7dc7 (diff) |
cifs: pull freeing mountdata/dropping nls/freeing cifs_sb into cifs_umount()
all callers of cifs_umount() proceed to do the same thing; pull it into
cifs_umount() itself.
Acked-by: Pavel Shilovsky <piastryyy@gmail.com>
Reviewed-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/cifs/connect.c')
-rw-r--r-- | fs/cifs/connect.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index b2702226634e..ca7fbe3d51a5 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c | |||
@@ -3362,6 +3362,9 @@ cifs_umount(struct cifs_sb_info *cifs_sb) | |||
3362 | spin_unlock(&cifs_sb->tlink_tree_lock); | 3362 | spin_unlock(&cifs_sb->tlink_tree_lock); |
3363 | 3363 | ||
3364 | bdi_destroy(&cifs_sb->bdi); | 3364 | bdi_destroy(&cifs_sb->bdi); |
3365 | kfree(cifs_sb->mountdata); | ||
3366 | unload_nls(cifs_sb->local_nls); | ||
3367 | kfree(cifs_sb); | ||
3365 | } | 3368 | } |
3366 | 3369 | ||
3367 | int cifs_negotiate_protocol(unsigned int xid, struct cifs_ses *ses) | 3370 | int cifs_negotiate_protocol(unsigned int xid, struct cifs_ses *ses) |