diff options
author | Tom Rix <trix@redhat.com> | 2023-05-02 14:07:13 -0400 |
---|---|---|
committer | Chuck Lever <chuck.lever@oracle.com> | 2023-05-02 15:47:33 -0400 |
commit | fc412a6196a6f46ece0e6e6b118556464f165800 (patch) | |
tree | 21cd7d7c919265779f18b34d776e4781ba40d4c7 /fs | |
parent | 340086da9a87820b40601141a0e9e87c954ac006 (diff) | |
download | linux-stable-fc412a6196a6f46ece0e6e6b118556464f165800.tar.gz linux-stable-fc412a6196a6f46ece0e6e6b118556464f165800.tar.bz2 linux-stable-fc412a6196a6f46ece0e6e6b118556464f165800.zip |
lockd: define nlm_port_min,max with CONFIG_SYSCTL
gcc with W=1 and ! CONFIG_SYSCTL
fs/lockd/svc.c:80:51: error: ‘nlm_port_max’ defined but not used [-Werror=unused-const-variable=]
80 | static const int nlm_port_min = 0, nlm_port_max = 65535;
| ^~~~~~~~~~~~
fs/lockd/svc.c:80:33: error: ‘nlm_port_min’ defined but not used [-Werror=unused-const-variable=]
80 | static const int nlm_port_min = 0, nlm_port_max = 65535;
| ^~~~~~~~~~~~
The only use of these variables is when CONFIG_SYSCTL
is defined, so their definition should be likewise conditional.
Signed-off-by: Tom Rix <trix@redhat.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/lockd/svc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/lockd/svc.c b/fs/lockd/svc.c index 9a47303b2cba..fe2f6dd9a874 100644 --- a/fs/lockd/svc.c +++ b/fs/lockd/svc.c @@ -77,9 +77,9 @@ static const unsigned long nlm_grace_period_min = 0; static const unsigned long nlm_grace_period_max = 240; static const unsigned long nlm_timeout_min = 3; static const unsigned long nlm_timeout_max = 20; -static const int nlm_port_min = 0, nlm_port_max = 65535; #ifdef CONFIG_SYSCTL +static const int nlm_port_min = 0, nlm_port_max = 65535; static struct ctl_table_header * nlm_sysctl_table; #endif |