[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240821154926.14785d66@kernel.org>
Date: Wed, 21 Aug 2024 15:49:26 -0700
From: Jakub Kicinski <kuba@...nel.org>
To: Breno Leitao <leitao@...ian.org>
Cc: davem@...emloft.net, edumazet@...gle.com, pabeni@...hat.com,
netdev@...r.kernel.org, linux-kernel@...r.kernel.org, Aijay Adams
<aijay@...a.com>
Subject: Re: [PATCH net-next v2 3/3] netconsole: Populate dynamic entry even
if netpoll fails
On Wed, 21 Aug 2024 01:21:58 -0700 Breno Leitao wrote:
> Another way to write this is:
>
> err = netpoll_setup(&nt->np);
> if (err) {
> pr_err("Not enabling netconsole. Netpoll setup failed\n");
> if (!IS_ENABLED(CONFIG_NETCONSOLE_DYNAMIC))
> goto fail
> } else {
> nt->enabled = true;
> }
>
> is it better? Or, Is there a even better way to write this?
Yes, I think this is better! Or at least I wouldn't have made the same
mistake reading it if it was written this way :)
> > As for the message would it be more helpful to indicate target will be
> > disabled? Move the print after the check for dynamic and say "Netpoll
> > setup failed, netconsole target will be disabled" ?
>
> In both cases the target will be disabled, right? In one case, it will
> populate the cmdline0 configfs (if CONFIG_NETCONSOLE_DYNAMIC is set),
> otherwise it will fail completely. Either way, netconsole will be
> disabled.
No strong feelings. I was trying to highlight that it's a single target
that ends up being disabled "netconsole disabled" sounds like the whole
netconsole module is completely out of commission.
Powered by blists - more mailing lists