From: Artem Chernyshev <artem.chernyshev@red-soft.ru>
To: Sven Eckelmann <sven@narfation.org>
Cc: Marek Lindner <mareklindner@neomailbox.ch>,
Simon Wunderlich <sw@simonwunderlich.de>,
b.a.t.m.a.n@lists.open-mesh.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org, lvc-project@linuxtesting.org,
Markus Pargmann <mpa@pengutronix.de>
Subject: Re: [PATCH] batman-adv: Check return value
Date: Sun, 25 Dec 2022 12:47:42 +0300 [thread overview]
Message-ID: <Y6gcPlvR18j17zlm@localhost.localdomain> (raw)
In-Reply-To: <2038034.tdWV9SEqCh@sven-l14>
Hi,
On Sun, Dec 25, 2022 at 07:37:28AM +0100, Sven Eckelmann wrote:
> Subject is missing something like ..." after calling rtnl_link_register()" or
> ..."s during module initialization".
>
> On Sunday, 25 December 2022 00:33:11 CET Artem Chernyshev wrote:
> [...]
> > diff --git a/net/batman-adv/main.c b/net/batman-adv/main.c
> > index e8a449915566..04cd9682bd29 100644kwin
> > @@ -113,7 +113,11 @@ static int __init batadv_init(void)
> > goto err_create_wq;
> >
> > register_netdevice_notifier(&batadv_hard_if_notifier);
> > - rtnl_link_register(&batadv_link_ops);
> > + ret = rtnl_link_register(&batadv_link_ops);
> > + if (ret) {
> > + pr_err("Can't register link_ops\n");
> > + goto err_create_wq;
> > + }
> > batadv_netlink_register();
> >
> > pr_info("B.A.T.M.A.N. advanced %s (compatibility version %i) loaded\n",
> >
>
> This looks wrong to me. You missed to destroy the batadv_hard_if_notifier in
> this case.
>
> And if you want to start adding the checks, you should also have added it for
> batadv_v_init, batadv_iv_init, batadv_nc_init, batadv_tp_meter_init and
> register_netdevice_notifier. You can use the unfinished patch from Markus
> Pargmann as starting point.
>
> Kind regards,
> Sven
>
> [1] https://patchwork.open-mesh.org/project/b.a.t.m.a.n./patch/1419594103-10928-6-git-send-email-mpa@pengutronix.de/
> https://lists.open-mesh.org/mailman3/hyperkitty/list/b.a.t.m.a.n@lists.open-mesh.org/thread/QDX46YARWUC4R7OBFHR5OJKWQIXDQWRR/#QDX46YARWUC4R7OBFHR5OJKWQIXDQWRR
Thanks for review, I'll try to fix the errors in v2
Best,
Artem
prev parent reply other threads:[~2022-12-25 9:47 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-24 23:33 [PATCH] batman-adv: Check return value Artem Chernyshev
2022-12-25 6:37 ` Sven Eckelmann
2022-12-25 9:47 ` Artem Chernyshev [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Y6gcPlvR18j17zlm@localhost.localdomain \
--to=artem.chernyshev@red-soft.ru \
--cc=b.a.t.m.a.n@lists.open-mesh.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lvc-project@linuxtesting.org \
--cc=mareklindner@neomailbox.ch \
--cc=mpa@pengutronix.de \
--cc=netdev@vger.kernel.org \
--cc=sven@narfation.org \
--cc=sw@simonwunderlich.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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 read-only IMAP folder(s) and NNTP newsgroup(s).