From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: "Gao Feng" References: <1493121800-28066-1-git-send-email-gfree.wind@foxmail.com> <1756616.320MP6AHYH@bentobox> In-Reply-To: <1756616.320MP6AHYH@bentobox> Date: Wed, 26 Apr 2017 08:41:30 +0800 Message-ID: <002901d2be25$d9092bd0$8b1b8370$@foxmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Language: zh-cn Subject: Re: [B.A.T.M.A.N.] [PATCH net] net: batman-adv: Fix possible memleaks when fail to register_netdevice List-Id: The list for a Better Approach To Mobile Ad-hoc Networking List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: 'Sven Eckelmann' , b.a.t.m.a.n@lists.open-mesh.org Cc: mareklindner@neomailbox.ch, netdev@vger.kernel.org, a@unstable.cc, 'Gao Feng' , davem@davemloft.net > From: Sven Eckelmann [mailto:sven@narfation.org] > Sent: Tuesday, April 25, 2017 9:53 PM > On Dienstag, 25. April 2017 20:03:20 CEST gfree.wind@foxmail.com wrote: > > From: Gao Feng > > > > Because the func batadv_softif_init_late allocate some resources and > > it would be invoked in register_netdevice. So we need to invoke the > > func batadv_softif_free instead of free_netdev to cleanup when fail to > > register_netdevice. > > I could be wrong, but shouldn't the destructor be replaced with free_netdevice > and the batadv_softif_free (without the free_netdev) used as ndo_uninit? The > line you've changed should then be kept as free_netdevice. > > At least this seems to be important when using rtnl_newlink() instead of the > legacy sysfs netdev stuff from batman-adv. rtnl_newlink() would also only call > free_netdevice and thus also not run batadv_softif_free. This seems to be only > fixable by calling ndo_uninit. > > Kind regards, > Sven Sorry, I don't get you. The net_dev is created in this func batadv_softif_create. Why couldn't invoke batadv_softif_free to cleanup when fail to register_netdevice? Best Regards Feng