linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fs: remove reference to the removed config NFSD_V3
@ 2022-03-11 14:39 Lukas Bulwahn
  2022-03-11 15:23 ` [PATCH] " Chuck Lever III
  0 siblings, 1 reply; 3+ messages in thread
From: Lukas Bulwahn @ 2022-03-11 14:39 UTC (permalink / raw)
  To: Chuck Lever, linux-nfs
  Cc: linux-fsdevel, Alexander Viro, kernel-janitors, linux-kernel,
	Lukas Bulwahn

Commit 6a687e69a54e ("NFSD: Remove CONFIG_NFSD_V3") removes the config
NFSD_V3, but misses one reference in fs/Kconfig.

Remove this remaining reference to the removed config symbol.

This issue was discovered with ./scripts/checkkconfigsymbols.py.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
Chuck, please pick this quick fix to your commit in linux-next.

 fs/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/Kconfig b/fs/Kconfig
index 7f2455e8e18a..ec2cf8ccd170 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -344,7 +344,7 @@ config LOCKD
 
 config LOCKD_V4
 	bool
-	depends on NFSD_V3 || NFS_V3
+	depends on NFS_V3
 	depends on FILE_LOCKING
 	default y
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] remove reference to the removed config NFSD_V3
  2022-03-11 14:39 [PATCH] fs: remove reference to the removed config NFSD_V3 Lukas Bulwahn
@ 2022-03-11 15:23 ` Chuck Lever III
  2022-03-11 15:54   ` Chuck Lever III
  0 siblings, 1 reply; 3+ messages in thread
From: Chuck Lever III @ 2022-03-11 15:23 UTC (permalink / raw)
  To: Lukas Bulwahn
  Cc: Linux NFS Mailing List, linux-fsdevel, Al Viro,
	kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org



> On Mar 11, 2022, at 9:39 AM, Lukas Bulwahn <lukas.bulwahn@gmail.com> wrote:
> 
> Commit 6a687e69a54e ("NFSD: Remove CONFIG_NFSD_V3") removes the config
> NFSD_V3, but misses one reference in fs/Kconfig.
> 
> Remove this remaining reference to the removed config symbol.
> 
> This issue was discovered with ./scripts/checkkconfigsymbols.py.
> 
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> ---
> Chuck, please pick this quick fix to your commit in linux-next.
> 
> fs/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/Kconfig b/fs/Kconfig
> index 7f2455e8e18a..ec2cf8ccd170 100644
> --- a/fs/Kconfig
> +++ b/fs/Kconfig
> @@ -344,7 +344,7 @@ config LOCKD
> 
> config LOCKD_V4
> 	bool
> -	depends on NFSD_V3 || NFS_V3
> +	depends on NFS_V3

Actually, I think:

	depends on NFSD || NFS_V3

is more correct. LOCKD_V4 now needs to be enabled whenever
the server is enabled, since NFSv3 support in the server is
now always enabled.


> 	depends on FILE_LOCKING
> 	default y
> 
> -- 
> 2.17.1
> 

--
Chuck Lever




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] remove reference to the removed config NFSD_V3
  2022-03-11 15:23 ` [PATCH] " Chuck Lever III
@ 2022-03-11 15:54   ` Chuck Lever III
  0 siblings, 0 replies; 3+ messages in thread
From: Chuck Lever III @ 2022-03-11 15:54 UTC (permalink / raw)
  To: Lukas Bulwahn
  Cc: Linux NFS Mailing List, linux-fsdevel, Al Viro,
	kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org



> On Mar 11, 2022, at 10:23 AM, Chuck Lever III <chuck.lever@oracle.com> wrote:
> 
> 
> 
>> On Mar 11, 2022, at 9:39 AM, Lukas Bulwahn <lukas.bulwahn@gmail.com> wrote:
>> 
>> Commit 6a687e69a54e ("NFSD: Remove CONFIG_NFSD_V3") removes the config
>> NFSD_V3, but misses one reference in fs/Kconfig.
>> 
>> Remove this remaining reference to the removed config symbol.
>> 
>> This issue was discovered with ./scripts/checkkconfigsymbols.py.
>> 
>> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
>> ---
>> Chuck, please pick this quick fix to your commit in linux-next.
>> 
>> fs/Kconfig | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>> 
>> diff --git a/fs/Kconfig b/fs/Kconfig
>> index 7f2455e8e18a..ec2cf8ccd170 100644
>> --- a/fs/Kconfig
>> +++ b/fs/Kconfig
>> @@ -344,7 +344,7 @@ config LOCKD
>> 
>> config LOCKD_V4
>> 	bool
>> -	depends on NFSD_V3 || NFS_V3
>> +	depends on NFS_V3
> 
> Actually, I think:
> 
> 	depends on NFSD || NFS_V3
> 
> is more correct. LOCKD_V4 now needs to be enabled whenever
> the server is enabled, since NFSv3 support in the server is
> now always enabled.

I've squashed this change into "NFSD: Remove CONFIG_NFSD_V3".
Thanks for reporting it, Lukas!


>> 	depends on FILE_LOCKING
>> 	default y
>> 
>> -- 
>> 2.17.1
>> 
> 
> --
> Chuck Lever

--
Chuck Lever




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-03-11 15:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-11 14:39 [PATCH] fs: remove reference to the removed config NFSD_V3 Lukas Bulwahn
2022-03-11 15:23 ` [PATCH] " Chuck Lever III
2022-03-11 15:54   ` Chuck Lever III

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).