summaryrefslogtreecommitdiffstats
path: root/fs/cifs/connect.c
diff options
context:
space:
mode:
authorAl Viro2011-06-17 15:27:16 +0200
committerAl Viro2011-06-25 00:39:42 +0200
commit2a9b99516c662d1713d58648e4a4c9aef72051bc (patch)
tree3c85e9cbe43af86d647b3c4d658955c82dc5fb7f /fs/cifs/connect.c
parentcifs: initialize ->tlink_tree in cifs_setup_cifs_sb() (diff)
downloadkernel-qcow2-linux-2a9b99516c662d1713d58648e4a4c9aef72051bc.tar.gz
kernel-qcow2-linux-2a9b99516c662d1713d58648e4a4c9aef72051bc.tar.xz
kernel-qcow2-linux-2a9b99516c662d1713d58648e4a4c9aef72051bc.zip
sanitize cifs_umount() prototype
a) superblock argument is unused b) it always returns 0 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.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
index 9f09adf51edc..b2702226634e 100644
--- a/fs/cifs/connect.c
+++ b/fs/cifs/connect.c
@@ -3339,8 +3339,8 @@ CIFSTCon(unsigned int xid, struct cifs_ses *ses,
return rc;
}
-int
-cifs_umount(struct super_block *sb, struct cifs_sb_info *cifs_sb)
+void
+cifs_umount(struct cifs_sb_info *cifs_sb)
{
struct rb_root *root = &cifs_sb->tlink_tree;
struct rb_node *node;
@@ -3362,7 +3362,6 @@ cifs_umount(struct super_block *sb, struct cifs_sb_info *cifs_sb)
spin_unlock(&cifs_sb->tlink_tree_lock);
bdi_destroy(&cifs_sb->bdi);
- return 0;
}
int cifs_negotiate_protocol(unsigned int xid, struct cifs_ses *ses)