* [PATCH] net: tipc: remove redundant 'bool' from CONFIG_TIPC_{MEDIA_UDP,CRYPTO}
@ 2024-02-04 13:12 Masahiro Yamada
2024-02-04 15:43 ` Randy Dunlap
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Masahiro Yamada @ 2024-02-04 13:12 UTC (permalink / raw)
To: David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
netdev
Cc: Masahiro Yamada, Jon Maloy, Ying Xue, linux-kernel,
tipc-discussion
The 'bool' is already specified for these options.
The second 'bool' under the help message is redundant.
While I am here, I moved 'default y' above, as it is common to place
the help text last.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
---
net/tipc/Kconfig | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/net/tipc/Kconfig b/net/tipc/Kconfig
index be1c4003d67d..bb0d71eb02a6 100644
--- a/net/tipc/Kconfig
+++ b/net/tipc/Kconfig
@@ -32,16 +32,17 @@ config TIPC_MEDIA_UDP
bool "IP/UDP media type support"
depends on TIPC
select NET_UDP_TUNNEL
+ default y
help
Saying Y here will enable support for running TIPC over IP/UDP
- bool
- default y
+
config TIPC_CRYPTO
bool "TIPC encryption support"
depends on TIPC
select CRYPTO
select CRYPTO_AES
select CRYPTO_GCM
+ default y
help
Saying Y here will enable support for TIPC encryption.
All TIPC messages will be encrypted/decrypted by using the currently most
@@ -49,8 +50,6 @@ config TIPC_CRYPTO
entering the TIPC stack.
Key setting from user-space is performed via netlink by a user program
(e.g. the iproute2 'tipc' tool).
- bool
- default y
config TIPC_DIAG
tristate "TIPC: socket monitoring interface"
--
2.40.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] net: tipc: remove redundant 'bool' from CONFIG_TIPC_{MEDIA_UDP,CRYPTO}
2024-02-04 13:12 [PATCH] net: tipc: remove redundant 'bool' from CONFIG_TIPC_{MEDIA_UDP,CRYPTO} Masahiro Yamada
@ 2024-02-04 15:43 ` Randy Dunlap
2024-02-06 17:56 ` Simon Horman
2024-02-07 13:20 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2024-02-04 15:43 UTC (permalink / raw)
To: Masahiro Yamada, David S . Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, netdev
Cc: Jon Maloy, Ying Xue, linux-kernel, tipc-discussion
On 2/4/24 05:12, Masahiro Yamada wrote:
> The 'bool' is already specified for these options.
>
> The second 'bool' under the help message is redundant.
>
> While I am here, I moved 'default y' above, as it is common to place
> the help text last.
>
> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Thanks.
> ---
>
> net/tipc/Kconfig | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/net/tipc/Kconfig b/net/tipc/Kconfig
> index be1c4003d67d..bb0d71eb02a6 100644
> --- a/net/tipc/Kconfig
> +++ b/net/tipc/Kconfig
> @@ -32,16 +32,17 @@ config TIPC_MEDIA_UDP
> bool "IP/UDP media type support"
> depends on TIPC
> select NET_UDP_TUNNEL
> + default y
> help
> Saying Y here will enable support for running TIPC over IP/UDP
> - bool
> - default y
> +
> config TIPC_CRYPTO
> bool "TIPC encryption support"
> depends on TIPC
> select CRYPTO
> select CRYPTO_AES
> select CRYPTO_GCM
> + default y
> help
> Saying Y here will enable support for TIPC encryption.
> All TIPC messages will be encrypted/decrypted by using the currently most
> @@ -49,8 +50,6 @@ config TIPC_CRYPTO
> entering the TIPC stack.
> Key setting from user-space is performed via netlink by a user program
> (e.g. the iproute2 'tipc' tool).
> - bool
> - default y
>
> config TIPC_DIAG
> tristate "TIPC: socket monitoring interface"
--
#Randy
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] net: tipc: remove redundant 'bool' from CONFIG_TIPC_{MEDIA_UDP,CRYPTO}
2024-02-04 13:12 [PATCH] net: tipc: remove redundant 'bool' from CONFIG_TIPC_{MEDIA_UDP,CRYPTO} Masahiro Yamada
2024-02-04 15:43 ` Randy Dunlap
@ 2024-02-06 17:56 ` Simon Horman
2024-02-07 13:20 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2024-02-06 17:56 UTC (permalink / raw)
To: Masahiro Yamada
Cc: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
netdev, Jon Maloy, Ying Xue, linux-kernel, tipc-discussion
On Sun, Feb 04, 2024 at 10:12:26PM +0900, Masahiro Yamada wrote:
> The 'bool' is already specified for these options.
>
> The second 'bool' under the help message is redundant.
>
> While I am here, I moved 'default y' above, as it is common to place
> the help text last.
>
> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Thanks Yamada-san,
this looks good to me.
Reviewed-by: Simon Horman <horms@kernel.org>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] net: tipc: remove redundant 'bool' from CONFIG_TIPC_{MEDIA_UDP,CRYPTO}
2024-02-04 13:12 [PATCH] net: tipc: remove redundant 'bool' from CONFIG_TIPC_{MEDIA_UDP,CRYPTO} Masahiro Yamada
2024-02-04 15:43 ` Randy Dunlap
2024-02-06 17:56 ` Simon Horman
@ 2024-02-07 13:20 ` patchwork-bot+netdevbpf
2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-02-07 13:20 UTC (permalink / raw)
To: Masahiro Yamada
Cc: davem, edumazet, kuba, pabeni, netdev, jmaloy, ying.xue,
linux-kernel, tipc-discussion
Hello:
This patch was applied to netdev/net-next.git (main)
by David S. Miller <davem@davemloft.net>:
On Sun, 4 Feb 2024 22:12:26 +0900 you wrote:
> The 'bool' is already specified for these options.
>
> The second 'bool' under the help message is redundant.
>
> While I am here, I moved 'default y' above, as it is common to place
> the help text last.
>
> [...]
Here is the summary with links:
- net: tipc: remove redundant 'bool' from CONFIG_TIPC_{MEDIA_UDP,CRYPTO}
https://git.kernel.org/netdev/net-next/c/59d6bccebe5c
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-02-07 13:20 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-04 13:12 [PATCH] net: tipc: remove redundant 'bool' from CONFIG_TIPC_{MEDIA_UDP,CRYPTO} Masahiro Yamada
2024-02-04 15:43 ` Randy Dunlap
2024-02-06 17:56 ` Simon Horman
2024-02-07 13:20 ` patchwork-bot+netdevbpf
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).