mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] drbd: remove unused drbd_nl_mcgrps[] array
@ 2026-05-19 20:30 Arnd Bergmann
  2026-05-19 20:51 ` Christoph Böhmwalder
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Arnd Bergmann @ 2026-05-19 20:30 UTC (permalink / raw)
  To: Philipp Reisner, Lars Ellenberg, Christoph Böhmwalder,
	Jens Axboe, Jakub Kicinski
  Cc: Arnd Bergmann, drbd-dev, linux-block, linux-kernel

From: Arnd Bergmann <arnd@arndb.de>

After the rework, two files have a copy of drbd_nl_mcgrps[], but one
of them has no references:

drivers/block/drbd/drbd_nl_gen.c:641:42: error: 'drbd_nl_mcgrps' defined but not used [-Werror=unused-const-variable=]
  641 | static const struct genl_multicast_group drbd_nl_mcgrps[] = {
      |                                          ^~~~~~~~~~~~~~

At the default warning level, -Wunused-const-variables is turned off,
so this has gone unnoticed.

Remove the extra variable.

Fixes: 8098eeb693c4 ("drbd: replace genl_magic with explicit netlink serialization")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 drivers/block/drbd/drbd_nl_gen.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/drivers/block/drbd/drbd_nl_gen.c b/drivers/block/drbd/drbd_nl_gen.c
index fb44b948cec8..e133e8415205 100644
--- a/drivers/block/drbd/drbd_nl_gen.c
+++ b/drivers/block/drbd/drbd_nl_gen.c
@@ -638,10 +638,6 @@ const struct genl_split_ops drbd_nl_ops[32] = {
 	},
 };
 
-static const struct genl_multicast_group drbd_nl_mcgrps[] = {
-	[DRBD_NLGRP_EVENTS] = { "events", },
-};
-
 static int __drbd_cfg_context_from_attrs(struct drbd_cfg_context *s,
 		struct nlattr ***ret_nested_attribute_table,
 		struct genl_info *info)
-- 
2.39.5


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

* Re: [PATCH] drbd: remove unused drbd_nl_mcgrps[] array
  2026-05-19 20:30 [PATCH] drbd: remove unused drbd_nl_mcgrps[] array Arnd Bergmann
@ 2026-05-19 20:51 ` Christoph Böhmwalder
  2026-09-24 13:20 ` Christoph Böhmwalder
  2026-09-24 13:35 ` Jens Axboe
  2 siblings, 0 replies; 4+ messages in thread
From: Christoph Böhmwalder @ 2026-05-19 20:51 UTC (permalink / raw)
  To: Arnd Bergmann, Philipp Reisner, Lars Ellenberg, Jens Axboe,
	Jakub Kicinski
  Cc: Arnd Bergmann, drbd-dev, linux-block, linux-kernel, drbd-dev

On 5/19/26 22:30, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
> 
> After the rework, two files have a copy of drbd_nl_mcgrps[], but one
> of them has no references:
> 
> drivers/block/drbd/drbd_nl_gen.c:641:42: error: 'drbd_nl_mcgrps' defined but not used [-Werror=unused-const-variable=]
>    641 | static const struct genl_multicast_group drbd_nl_mcgrps[] = {
>        |                                          ^~~~~~~~~~~~~~
> 
> At the default warning level, -Wunused-const-variables is turned off,
> so this has gone unnoticed.
> 
> Remove the extra variable.
> 
> Fixes: 8098eeb693c4 ("drbd: replace genl_magic with explicit netlink serialization")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

Oops, looks like a copy/paste error on my side.
Thanks for noticing and fixing.

Reviewed-by: Christoph Böhmwalder <christoph.boehmwalder@linbit.com>

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

* Re: [PATCH] drbd: remove unused drbd_nl_mcgrps[] array
  2026-05-19 20:30 [PATCH] drbd: remove unused drbd_nl_mcgrps[] array Arnd Bergmann
  2026-05-19 20:51 ` Christoph Böhmwalder
@ 2026-09-24 13:20 ` Christoph Böhmwalder
  2026-09-24 13:35 ` Jens Axboe
  2 siblings, 0 replies; 4+ messages in thread
From: Christoph Böhmwalder @ 2026-09-24 13:20 UTC (permalink / raw)
  To: Jens Axboe
  Cc: Arnd Bergmann, linux-block, linux-kernel, Lars Ellenberg,
	Philipp Reisner, drbd-dev

On 5/19/26 22:30, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
> 
> After the rework, two files have a copy of drbd_nl_mcgrps[], but one
> of them has no references:
> 
> drivers/block/drbd/drbd_nl_gen.c:641:42: error: 'drbd_nl_mcgrps' defined but not used [-Werror=unused-const-variable=]
>    641 | static const struct genl_multicast_group drbd_nl_mcgrps[] = {
>        |                                          ^~~~~~~~~~~~~~
> 
> At the default warning level, -Wunused-const-variables is turned off,
> so this has gone unnoticed.
> 
> Remove the extra variable.
> 
> Fixes: 8098eeb693c4 ("drbd: replace genl_magic with explicit netlink serialization")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> ---
>   drivers/block/drbd/drbd_nl_gen.c | 4 ----
>   1 file changed, 4 deletions(-)
@Jens ping, seems like this was never applied? I think it should also 
apply to the current tree.

Thanks,
Christoph

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

* Re: [PATCH] drbd: remove unused drbd_nl_mcgrps[] array
  2026-05-19 20:30 [PATCH] drbd: remove unused drbd_nl_mcgrps[] array Arnd Bergmann
  2026-05-19 20:51 ` Christoph Böhmwalder
  2026-09-24 13:20 ` Christoph Böhmwalder
@ 2026-09-24 13:35 ` Jens Axboe
  2 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2026-09-24 13:35 UTC (permalink / raw)
  To: Philipp Reisner, Lars Ellenberg, Christoph Böhmwalder,
	Jakub Kicinski, Arnd Bergmann
  Cc: Arnd Bergmann, drbd-dev, linux-block, linux-kernel


On Tue, 19 May 2026 22:30:49 +0200, Arnd Bergmann wrote:
> After the rework, two files have a copy of drbd_nl_mcgrps[], but one
> of them has no references:
> 
> drivers/block/drbd/drbd_nl_gen.c:641:42: error: 'drbd_nl_mcgrps' defined but not used [-Werror=unused-const-variable=]
>   641 | static const struct genl_multicast_group drbd_nl_mcgrps[] = {
>       |                                          ^~~~~~~~~~~~~~
> 
> [...]

Applied, thanks!

[1/1] drbd: remove unused drbd_nl_mcgrps[] array
      commit: d431e03d831c043707e22311c4bdea1907166c34

Best regards,
-- 
Jens Axboe




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

end of thread, other threads:[~2026-09-24 13:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-05-19 20:30 [PATCH] drbd: remove unused drbd_nl_mcgrps[] array Arnd Bergmann
2026-05-19 20:51 ` Christoph Böhmwalder
2026-09-24 13:20 ` Christoph Böhmwalder
2026-09-24 13:35 ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®