From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Dichtel Subject: Re: [PATCH net v4] rtnl/bond: don't send rtnl msg for unregistered iface Date: Wed, 15 Jul 2015 17:07:55 +0200 Message-ID: <55A6774B.70406@6wind.com> References: <20150512161402.GC2081@nanopsycho> <1431519582-4219-1-git-send-email-nicolas.dichtel@6wind.com> Reply-To: nicolas.dichtel@6wind.com Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: jiri@resnulli.us, David Miller , Network Development , j.vosburgh@gmail.com, vfalico@gmail.com, gospo@cumulusnetworks.com To: Kristian Evensen Return-path: Received: from mail-wi0-f177.google.com ([209.85.212.177]:34938 "EHLO mail-wi0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751546AbbGOPH7 (ORCPT ); Wed, 15 Jul 2015 11:07:59 -0400 Received: by wiga1 with SMTP id a1so2583730wig.0 for ; Wed, 15 Jul 2015 08:07:57 -0700 (PDT) In-Reply-To: Sender: netdev-owner@vger.kernel.org List-ID: Le 13/07/2015 16:11, Kristian Evensen a =C3=A9crit : > Hello, > > I have a quick question about this patch. > > On Wed, May 13, 2015 at 2:19 PM, Nicolas Dichtel > wrote: >> diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c >> index 837d30b5ffed..7b25f1ef3d75 100644 >> --- a/net/core/rtnetlink.c >> +++ b/net/core/rtnetlink.c >> @@ -2415,6 +2415,9 @@ void rtmsg_ifinfo(int type, struct net_device = *dev, unsigned int change, >> { >> struct sk_buff *skb; >> >> + if (dev->reg_state !=3D NETREG_REGISTERED) >> + return; >> + > > Is this check correct, or placed at the correct location? The reason = I > am asking is as follows. In rollback_registered_many(), dev->reg_stat= e > is set to NETREG_UNREGISTERING for devices that will be unregistered. > When rtmsg_ifinfo_build_skb(RTM_DELLINK, ...) is called in the > following loop in rollback_registered_many, this comparison will > always be true and no DELLINK event generated. > > This change led to some applications I have not behaving as expected > due to missing DELLINK when network devices are removed. I also see n= o > DELLINK with ip mon link. Removing the check restores the old behavio= r > (DELLINK events are generated). My machine is running 3.18.18, which > includes this fix. I didn't have time to investigate right now. Will do it tomorrow. Regards, Nicolas