diff options
author | David Howells <dhowells@redhat.com> | 2024-03-15 20:46:56 +0300 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2024-03-20 19:49:24 +0300 |
commit | 5b142b37c70b1fa6936fa2d0babb0b8c16767d3a (patch) | |
tree | a57dc2bf26cde18ab69353010b4ca9a0f5b5276c /fs/smb/client/misc.c | |
parent | 2760161d149f8d60c3f767fc62a823a1ead9d367 (diff) | |
download | linux-5b142b37c70b1fa6936fa2d0babb0b8c16767d3a.tar.xz |
cifs: Move some extern decls from .c files to .h
Move the following:
extern mempool_t *cifs_sm_req_poolp;
extern mempool_t *cifs_req_poolp;
extern mempool_t *cifs_mid_poolp;
extern bool disable_legacy_dialects;
from various .c files to cifsglob.h.
Signed-off-by: David Howells <dhowells@redhat.com>
cc: linux-cifs@vger.kernel.org
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/smb/client/misc.c')
-rw-r--r-- | fs/smb/client/misc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/smb/client/misc.c b/fs/smb/client/misc.c index 9428a0db7718..c3771fc81328 100644 --- a/fs/smb/client/misc.c +++ b/fs/smb/client/misc.c @@ -27,9 +27,6 @@ #include "fs_context.h" #include "cached_dir.h" -extern mempool_t *cifs_sm_req_poolp; -extern mempool_t *cifs_req_poolp; - /* The xid serves as a useful identifier for each incoming vfs request, in a similar way to the mid which is useful to track each sent smb, and CurrentXid can also provide a running counter (although it |