diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2020-07-07 13:27:41 +0200 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2020-08-03 01:00:25 +0200 |
commit | 66a4bbc327e740c65b19a471fb9911f7f4b876fb (patch) | |
tree | 7febde1d3642ef9f18f31a8d13e5d3db6eb34031 /fs/cifs/inode.c | |
parent | smb3: warn on confusing error scenario with sec=krb5 (diff) | |
download | linux-66a4bbc327e740c65b19a471fb9911f7f4b876fb.tar.xz linux-66a4bbc327e740c65b19a471fb9911f7f4b876fb.zip |
cifs: remove unused variable 'server'
Fix build warning by removing unused variable 'server':
fs/cifs/inode.c:1089:26: warning:
variable server set but not used [-Wunused-but-set-variable]
1089 | struct TCP_Server_Info *server;
| ^~~~~~
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Reviewed-by: Aurelien Aptel <aaptel@suse.com>
Diffstat (limited to 'fs/cifs/inode.c')
-rw-r--r-- | fs/cifs/inode.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index ce95801e9b66..3989d08396ac 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c @@ -1086,7 +1086,6 @@ smb311_posix_get_inode_info(struct inode **inode, struct super_block *sb, unsigned int xid) { struct cifs_tcon *tcon; - struct TCP_Server_Info *server; struct tcon_link *tlink; struct cifs_sb_info *cifs_sb = CIFS_SB(sb); bool adjust_tz = false; @@ -1100,7 +1099,6 @@ smb311_posix_get_inode_info(struct inode **inode, if (IS_ERR(tlink)) return PTR_ERR(tlink); tcon = tlink_tcon(tlink); - server = tcon->ses->server; /* * 1. Fetch file metadata |