diff options
author | Pavel Shilovsky <piastryyy@gmail.com> | 2011-06-09 08:58:53 (GMT) |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2011-06-13 20:34:33 (GMT) |
commit | cd51875d53ae1459a2b09b4338166a218c0635a7 (patch) | |
tree | 701511e617549ae84de010d6849ef544fac0afd0 /fs/cifs | |
parent | 40779859de0f73b40390c6401a024d06cf024290 (diff) | |
download | linux-cd51875d53ae1459a2b09b4338166a218c0635a7.tar.xz |
CIFS: Fix sparse error
cifs_sb_master_tlink was declared as inline, but without a definition.
Remove the declaration and move the definition up.
Signed-off-by: Pavel Shilovsky <piastryyy@gmail.com>
Reviewed-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/connect.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index bb659eb..9190018 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c @@ -2149,7 +2149,10 @@ cifs_put_tlink(struct tcon_link *tlink) } static inline struct tcon_link * -cifs_sb_master_tlink(struct cifs_sb_info *cifs_sb); +cifs_sb_master_tlink(struct cifs_sb_info *cifs_sb) +{ + return cifs_sb->master_tlink; +} static int compare_mount_options(struct super_block *sb, struct cifs_mnt_data *mnt_data) @@ -3484,12 +3487,6 @@ out: return tcon; } -static inline struct tcon_link * -cifs_sb_master_tlink(struct cifs_sb_info *cifs_sb) -{ - return cifs_sb->master_tlink; -} - struct cifs_tcon * cifs_sb_master_tcon(struct cifs_sb_info *cifs_sb) { |