2011-03-13 16:54:50

by Jiri Slaby

[permalink] [raw]
Subject: [PATCH 1/2] NET: cdc-phonet, fix stop-queue handling

Currently there is a warning emitted by the cdc-phonet driver:
WARNING: at include/linux/netdevice.h:1557 usbpn_probe+0x3bb/0x3f0 [cdc_phonet]()
Modules linked in: ...
Pid: 5877, comm: insmod Not tainted 2.6.37.3-16-desktop #1
Call Trace:
[<ffffffff810059b9>] dump_trace+0x79/0x340
[<ffffffff81520fdc>] dump_stack+0x69/0x6f
[<ffffffff810580eb>] warn_slowpath_common+0x7b/0xc0
[<ffffffffa00254fb>] usbpn_probe+0x3bb/0x3f0 [cdc_phonet]
...
---[ end trace f5d3e02908603ab4 ]---
netif_stop_queue() cannot be called before register_netdev()

So remove netif_stop_queue from the probe funtction to avoid that.

Signed-off-by: Jiri Slaby <[email protected]>
Cc: Rémi Denis-Courmont <[email protected]>
Cc: David S. Miller <[email protected]>
---
drivers/net/usb/cdc-phonet.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/drivers/net/usb/cdc-phonet.c b/drivers/net/usb/cdc-phonet.c
index 109751b..4cf4e36 100644
--- a/drivers/net/usb/cdc-phonet.c
+++ b/drivers/net/usb/cdc-phonet.c
@@ -392,7 +392,6 @@ int usbpn_probe(struct usb_interface *intf, const struct usb_device_id *id)

pnd = netdev_priv(dev);
SET_NETDEV_DEV(dev, &intf->dev);
- netif_stop_queue(dev);

pnd->dev = dev;
pnd->usb = usb_get_dev(usbdev);
--
1.7.4.1


2011-03-13 16:54:48

by Jiri Slaby

[permalink] [raw]
Subject: [PATCH 2/2] NET: cdc-phonet, handle empty phonet header

Currently, for N 5800 XM I get:
cdc_phonet: probe of 1-6:1.10 failed with error -22

It's because phonet_header is empty. Extra altsetting looks like
there:
E 05 24 00 01 10 03 24 ab 05 24 06 0a 0b 04 24 fd .$....$..$....$.
E 00 .

I don't see the header used anywhere so just check if the phonet
descriptor is there, not the structure itself.

Signed-off-by: Jiri Slaby <[email protected]>
Cc: Rémi Denis-Courmont <[email protected]>
Cc: David S. Miller <[email protected]>
---
drivers/net/usb/cdc-phonet.c | 9 +++------
1 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/drivers/net/usb/cdc-phonet.c b/drivers/net/usb/cdc-phonet.c
index 4cf4e36..f967913 100644
--- a/drivers/net/usb/cdc-phonet.c
+++ b/drivers/net/usb/cdc-phonet.c
@@ -328,13 +328,13 @@ int usbpn_probe(struct usb_interface *intf, const struct usb_device_id *id)
{
static const char ifname[] = "usbpn%d";
const struct usb_cdc_union_desc *union_header = NULL;
- const struct usb_cdc_header_desc *phonet_header = NULL;
const struct usb_host_interface *data_desc;
struct usb_interface *data_intf;
struct usb_device *usbdev = interface_to_usbdev(intf);
struct net_device *dev;
struct usbpn_dev *pnd;
u8 *data;
+ int phonet = 0;
int len, err;

data = intf->altsetting->extra;
@@ -355,10 +355,7 @@ int usbpn_probe(struct usb_interface *intf, const struct usb_device_id *id)
(struct usb_cdc_union_desc *)data;
break;
case 0xAB:
- if (phonet_header || dlen < 5)
- break;
- phonet_header =
- (struct usb_cdc_header_desc *)data;
+ phonet = 1;
break;
}
}
@@ -366,7 +363,7 @@ int usbpn_probe(struct usb_interface *intf, const struct usb_device_id *id)
len -= dlen;
}

- if (!union_header || !phonet_header)
+ if (!union_header || !phonet)
return -EINVAL;

data_intf = usb_ifnum_to_if(usbdev, union_header->bSlaveInterface0);
--
1.7.4.1

2011-03-14 07:40:01

by Rémi Denis-Courmont

[permalink] [raw]
Subject: Re: [PATCH 1/2] NET: cdc-phonet, fix stop-queue handling

On Sunday 13 March 2011 18:54:30 ext Jiri Slaby, you wrote:
> Currently there is a warning emitted by the cdc-phonet driver:
> WARNING: at include/linux/netdevice.h:1557 usbpn_probe+0x3bb/0x3f0
> [cdc_phonet]() Modules linked in: ...
> Pid: 5877, comm: insmod Not tainted 2.6.37.3-16-desktop #1
> Call Trace:
> [<ffffffff810059b9>] dump_trace+0x79/0x340
> [<ffffffff81520fdc>] dump_stack+0x69/0x6f
> [<ffffffff810580eb>] warn_slowpath_common+0x7b/0xc0
> [<ffffffffa00254fb>] usbpn_probe+0x3bb/0x3f0 [cdc_phonet]
> ...
> ---[ end trace f5d3e02908603ab4 ]---
> netif_stop_queue() cannot be called before register_netdev()
>
> So remove netif_stop_queue from the probe funtction to avoid that.
>
> Signed-off-by: Jiri Slaby <[email protected]>
> Cc: Rémi Denis-Courmont <[email protected]>
> Cc: David S. Miller <[email protected]>

Acked-by: Rémi Denis-Courmont <[email protected]>

--
Rémi Denis-Courmont
http://www.remlab.net/

2011-03-14 07:49:07

by Rémi Denis-Courmont

[permalink] [raw]
Subject: Re: [PATCH 2/2] NET: cdc-phonet, handle empty phonet header

On Sunday 13 March 2011 18:54:31 ext Jiri Slaby, you wrote:
> Currently, for N 5800 XM I get:
> cdc_phonet: probe of 1-6:1.10 failed with error -22
>
> It's because phonet_header is empty. Extra altsetting looks like
> there:
> E 05 24 00 01 10 03 24 ab 05 24 06 0a 0b 04 24 fd .$....$..$....$.
> E 00 .
>
> I don't see the header used anywhere so just check if the phonet
> descriptor is there, not the structure itself.
>
> Signed-off-by: Jiri Slaby <[email protected]>
> Cc: Rémi Denis-Courmont <[email protected]>
> Cc: David S. Miller <[email protected]>

Acked-by: Rémi Denis-Courmont <[email protected]>

--
Rémi Denis-Courmont
http://www.remlab.net/

2011-03-14 22:22:58

by David Miller

[permalink] [raw]
Subject: Re: [PATCH 1/2] NET: cdc-phonet, fix stop-queue handling

From: "R?mi Denis-Courmont" <[email protected]>
Date: Mon, 14 Mar 2011 09:39:56 +0200

> On Sunday 13 March 2011 18:54:30 ext Jiri Slaby, you wrote:
>> Currently there is a warning emitted by the cdc-phonet driver:
>> WARNING: at include/linux/netdevice.h:1557 usbpn_probe+0x3bb/0x3f0
>> [cdc_phonet]() Modules linked in: ...
>> Pid: 5877, comm: insmod Not tainted 2.6.37.3-16-desktop #1
>> Call Trace:
>> [<ffffffff810059b9>] dump_trace+0x79/0x340
>> [<ffffffff81520fdc>] dump_stack+0x69/0x6f
>> [<ffffffff810580eb>] warn_slowpath_common+0x7b/0xc0
>> [<ffffffffa00254fb>] usbpn_probe+0x3bb/0x3f0 [cdc_phonet]
>> ...
>> ---[ end trace f5d3e02908603ab4 ]---
>> netif_stop_queue() cannot be called before register_netdev()
>>
>> So remove netif_stop_queue from the probe funtction to avoid that.
>>
>> Signed-off-by: Jiri Slaby <[email protected]>
>> Cc: R?mi Denis-Courmont <[email protected]>
>> Cc: David S. Miller <[email protected]>
>
> Acked-by: R?mi Denis-Courmont <[email protected]>

Applied.

2011-03-14 22:23:53

by David Miller

[permalink] [raw]
Subject: Re: [PATCH 2/2] NET: cdc-phonet, handle empty phonet header

From: "R?mi Denis-Courmont" <[email protected]>
Date: Mon, 14 Mar 2011 09:49:04 +0200

> On Sunday 13 March 2011 18:54:31 ext Jiri Slaby, you wrote:
>> Currently, for N 5800 XM I get:
>> cdc_phonet: probe of 1-6:1.10 failed with error -22
>>
>> It's because phonet_header is empty. Extra altsetting looks like
>> there:
>> E 05 24 00 01 10 03 24 ab 05 24 06 0a 0b 04 24 fd .$....$..$....$.
>> E 00 .
>>
>> I don't see the header used anywhere so just check if the phonet
>> descriptor is there, not the structure itself.
>>
>> Signed-off-by: Jiri Slaby <[email protected]>
>> Cc: R?mi Denis-Courmont <[email protected]>
>> Cc: David S. Miller <[email protected]>
>
> Acked-by: R?mi Denis-Courmont <[email protected]>

Also applied, thanks.