aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs
diff options
context:
space:
mode:
authorSteve French <stfrench@microsoft.com>2021-11-10 03:09:52 -0600
committerSteve French <stfrench@microsoft.com>2021-11-10 16:30:23 -0600
commit0e62904836ecddf69b0358fe8f9442d3dd914c55 (patch)
treed68845d73121b2020ddc48c12f9d17251ae62562 /fs/cifs
parentcifs: support nested dfs links over reconnect (diff)
downloadlinux-dev-0e62904836ecddf69b0358fe8f9442d3dd914c55.tar.xz
linux-dev-0e62904836ecddf69b0358fe8f9442d3dd914c55.zip
smb3: remove trivial dfs compile warning
Fix warning caused by recent changes to the dfs code: symbol 'tree_connect_dfs_target' was not declared. Should it be static? Reviewed-by: Paulo Alcantara (SUSE) <pc@cjr.nz> Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r--fs/cifs/connect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
index 1ace46e3f16f..df3365958603 100644
--- a/fs/cifs/connect.c
+++ b/fs/cifs/connect.c
@@ -4139,7 +4139,7 @@ static int target_share_matches_server(struct TCP_Server_Info *server, const cha
return rc;
}
-int __tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon,
+static int __tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon,
struct cifs_sb_info *cifs_sb, char *tree,
struct dfs_cache_tgt_list *tl, struct dfs_info3_param *ref)
{
@@ -4238,7 +4238,7 @@ out:
return rc;
}
-int tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon,
+static int tree_connect_dfs_target(const unsigned int xid, struct cifs_tcon *tcon,
struct cifs_sb_info *cifs_sb, char *tree,
struct dfs_cache_tgt_list *tl, struct dfs_info3_param *ref)
{