[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20110518225945.GB6416@dens-work>
Date: Thu, 19 May 2011 10:59:47 +1200
From: Dennis Aberilla <dennis.aberilla@...omax.com>
To: info@...ean-labs.com
Cc: davem@...emloft.net, netdev@...r.kernel.org
Subject: [PATCH] drivers/net: ks8842 Fix crash on received packet when in
PIO mode.
This patch fixes a kernel crash during packet reception due to not enough allocated bytes for the skb. This applies to the driver when running in PIO mode in an ISA bus setup.
Signed-off-by: Dennis Aberilla <denzzzhome@...oo.com>
---
diff --git a/drivers/net/ks8842.c b/drivers/net/ks8842.c
index f0d8346..9069aee 100644
--- a/drivers/net/ks8842.c
+++ b/drivers/net/ks8842.c
@@ -662,7 +662,7 @@ static void ks8842_rx_frame(struct net_device *netdev,
/* check the status */
if ((status & RXSR_VALID) && !(status & RXSR_ERROR)) {
- struct sk_buff *skb = netdev_alloc_skb_ip_align(netdev, len);
+ struct sk_buff *skb = netdev_alloc_skb_ip_align(netdev, len + 2);
if (skb) {
--
Using mutt this time.
|Dennis
=======================================================================
This email, including any attachments, is only for the intended
addressee. It is subject to copyright, is confidential and may be
the subject of legal or other privilege, none of which is waived or
lost by reason of this transmission.
If the receiver is not the intended addressee, please accept our
apologies, notify us by return, delete all copies and perform no
other act on the email.
Unfortunately, we cannot warrant that the email has not been
altered or corrupted during transmission.
=======================================================================
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists