* [RESEND patch 2.6.25-rc2-git] rndis_host: fix transfer size negotiation
@ 2008-03-13 22:56 David Brownell
2008-03-17 12:08 ` Jeff Garzik
0 siblings, 1 reply; 2+ messages in thread
From: David Brownell @ 2008-03-13 22:56 UTC (permalink / raw)
To: Network development list; +Cc: Jean-Christophe Dubois
From: Jean-Christophe Dubois <jcd@tribudubois.net>
This patch should resolve a problem that's troubled support for
some RNDIS peripherals. It seems to have boiled down to using a
variable to establish transfer size limits before it was assigned,
which caused those devices to fallback to a default "jumbogram"
mode we don't support. Fix by assigning it earlier for RNDIS.
Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net>
[ cleanups ]
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
---
This bugfix should be merged before 2.6.25-final.
drivers/net/usb/rndis_host.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
--- g26.orig/drivers/net/usb/rndis_host.c 2008-02-01 22:24:38.000000000 -0800
+++ g26/drivers/net/usb/rndis_host.c 2008-02-16 12:55:35.000000000 -0800
@@ -16,10 +16,6 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-
-// #define DEBUG // error path messages, extra info
-// #define VERBOSE // more; success messages
-
#include <linux/module.h>
#include <linux/init.h>
#include <linux/netdevice.h>
@@ -318,6 +314,14 @@ generic_rndis_bind(struct usbnet *dev, s
net->hard_header_len += sizeof (struct rndis_data_hdr);
dev->hard_mtu = net->mtu + net->hard_header_len;
+ dev->maxpacket = usb_maxpacket(dev->udev, dev->out, 1);
+ if (dev->maxpacket == 0) {
+ if (netif_msg_probe(dev))
+ dev_dbg(&intf->dev, "dev->maxpacket can't be 0\n");
+ retval = -EINVAL;
+ goto fail_and_release;
+ }
+
dev->rx_urb_size = dev->hard_mtu + (dev->maxpacket + 1);
dev->rx_urb_size &= ~(dev->maxpacket - 1);
u.init->max_transfer_size = cpu_to_le32(dev->rx_urb_size);
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [RESEND patch 2.6.25-rc2-git] rndis_host: fix transfer size negotiation
2008-03-13 22:56 [RESEND patch 2.6.25-rc2-git] rndis_host: fix transfer size negotiation David Brownell
@ 2008-03-17 12:08 ` Jeff Garzik
0 siblings, 0 replies; 2+ messages in thread
From: Jeff Garzik @ 2008-03-17 12:08 UTC (permalink / raw)
To: David Brownell; +Cc: Network development list, Jean-Christophe Dubois
David Brownell wrote:
> From: Jean-Christophe Dubois <jcd@tribudubois.net>
>
> This patch should resolve a problem that's troubled support for
> some RNDIS peripherals. It seems to have boiled down to using a
> variable to establish transfer size limits before it was assigned,
> which caused those devices to fallback to a default "jumbogram"
> mode we don't support. Fix by assigning it earlier for RNDIS.
>
> Signed-off-by: Jean-Christophe Dubois <jcd@tribudubois.net>
> [ cleanups ]
> Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
> ---
> This bugfix should be merged before 2.6.25-final.
>
> drivers/net/usb/rndis_host.c | 12 ++++++++----
> 1 file changed, 8 insertions(+), 4 deletions(-)
applied
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-03-17 12:08 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-13 22:56 [RESEND patch 2.6.25-rc2-git] rndis_host: fix transfer size negotiation David Brownell
2008-03-17 12:08 ` Jeff Garzik
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).