* Re: [PATCH] hso.c hso_net_open bugfix
[not found] ` <48AC2EA8.1050503@option.com>
@ 2008-08-20 16:12 ` Paulius Zaleckas
0 siblings, 0 replies; only message in thread
From: Paulius Zaleckas @ 2008-08-20 16:12 UTC (permalink / raw)
To: Denis Joseph Barrow
Cc: Linux USB kernel mailing list, Greg Kroah-Hartman, netdev
Denis Joseph Barrow wrote:
>
>
> Hi Paulus & others,
> Sorry I nearly completely agree with you the code can be left as is
> However netdev_priv check is superflous from my understanding of the code,
> admittedly if they changed the netdev_priv function the check might
> become valid.
I agree with you that odev checks in hso_net_open and hso_net_tx_timeout
are pointless and should be removed.
Please add netdev@vger.kernel.org mailing list also.
> Admittedly dev_open would crash if dev!=NULL so I agree with you it
> must be checked further up the stack.
>
>
> Paulius Zaleckas wrote:
>>
>> Denis Joseph Barrow wrote:
>>> netdev_priv will return a non NULL pointer even if the net_device
>>> is NULL & cause a crash without this fix.
>> Wrong. If net_device will be NULL hso_net_open won't get called.
>>
>>> Signed-off-by: Denis Joseph Barrow
>>> <D.Barow-x9gZzRpC1QbQT0dZR+AlfA-XMD5yJDbdMReXY1tMh2IBg@public.gmane.org>
>>> ---
>>> Index: linux-2.6.27-rc3.patch/drivers/net/usb/hso.c
>>> ===================================================================
>>> --- linux-2.6.27-rc3.patch.orig/drivers/net/usb/hso.c 2008-08-20
>>> 12:12:28.000000000 +0200
>>> +++ linux-2.6.27-rc3.patch/drivers/net/usb/hso.c 2008-08-20
>>> 12:26:35.000000000 +0200
>>> @@ -611,14 +611,12 @@
>>> /* called when net interface is brought up by ifconfig */
>>> static int hso_net_open(struct net_device *net)
>>> {
>>> - struct hso_net *odev = netdev_priv(net);
>>> + struct hso_net *odev;
>>> unsigned long flags = 0;
>>>
>>> - if (!odev) {
>>> - dev_err(&net->dev, "No net device !\n");
>>> + if (!net)
>>> return -ENODEV;
>>> - }
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-usb" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-08-20 16:12 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <48ABF311.2070405@option.com>
[not found] ` <48AC2B32.1010505@teltonika.lt>
[not found] ` <48AC2EA8.1050503@option.com>
2008-08-20 16:12 ` [PATCH] hso.c hso_net_open bugfix Paulius Zaleckas
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 NNTP newsgroup(s).