* [PATCH] asix: fix unsetting of AX88172_MEDIUM_FD in ax88172_link_reset()
@ 2009-10-28 10:58 Roel Kluin
0 siblings, 0 replies; only message in thread
From: Roel Kluin @ 2009-10-28 10:58 UTC (permalink / raw)
To: Greg Kroah-Hartman, linux-usb, Andrew Morton, LKML
struct skb->len is unsigned so the `< 0' test always fails.
Besides, skb_pull ensures that skb->len does not wrap. Also
correctly unset the AX88172_MEDIUM_FD bit.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
---
drivers/net/usb/asix.c | 7 +------
1 files changed, 1 insertions(+), 6 deletions(-)
// vi drivers/net/usb/asix.c +77
#define AX88172_MEDIUM_FD 0x02
// vi drivers/net/usb/asix.c +80
#define AX88172_MEDIUM_DEFAULT \
( AX88172_MEDIUM_FD | AX88172_MEDIUM_TX | AX88172_MEDIUM_FC )
diff --git a/drivers/net/usb/asix.c b/drivers/net/usb/asix.c
index 6ce7f77..26a9d46 100644
--- a/drivers/net/usb/asix.c
+++ b/drivers/net/usb/asix.c
@@ -346,11 +346,6 @@ static int asix_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
packet = head + sizeof(header);
skb_pull(skb, 4);
}
-
- if (skb->len < 0) {
- deverr(dev,"asix_rx_fixup() Bad SKB Length %d", skb->len);
- return 0;
- }
return 1;
}
@@ -798,7 +793,7 @@ static int ax88172_link_reset(struct usbnet *dev)
mode = AX88172_MEDIUM_DEFAULT;
if (ecmd.duplex != DUPLEX_FULL)
- mode |= ~AX88172_MEDIUM_FD;
+ mode &= ~AX88172_MEDIUM_FD;
devdbg(dev, "ax88172_link_reset() speed: %d duplex: %d setting mode to 0x%04x", ecmd.speed, ecmd.duplex, mode);
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-10-28 10:47 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-28 10:58 [PATCH] asix: fix unsetting of AX88172_MEDIUM_FD in ax88172_link_reset() Roel Kluin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox