[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20201003.170042.489590204097552946.davem@davemloft.net>
Date: Sat, 03 Oct 2020 17:00:42 -0700 (PDT)
From: David Miller <davem@...emloft.net>
To: gregkh@...uxfoundation.org
Cc: netdev@...r.kernel.org, tuba@....ufl.edu, kuba@...nel.org,
oneukum@...e.com, linux-kernel@...r.kernel.org,
linux-usb@...r.kernel.org
Subject: Re: [PATCH v2] net: hso: do not call unregister if not registered
From: Greg KH <gregkh@...uxfoundation.org>
Date: Fri, 2 Oct 2020 13:43:23 +0200
> @@ -2366,7 +2366,8 @@ static void hso_free_net_device(struct hso_device *hso_dev, bool bailout)
>
> remove_net_device(hso_net->parent);
>
> - if (hso_net->net)
> + if (hso_net->net &&
> + hso_net->net->reg_state == NETREG_REGISTERED)
> unregister_netdev(hso_net->net);
>
> /* start freeing */
I really want to get out of the habit of drivers testing the internal
netdev registration state to make decisions.
Instead, please track this internally. You know if you registered the
device or not, therefore use that to control whether you try to
unregister it or not.
Thank you.
Powered by blists - more mailing lists