All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rtlwifi: Fix panic due to memory allocation failure
@ 2011-05-11 16:17 Larry Finger
  2011-05-11 16:28 ` Christian Lamparter
  0 siblings, 1 reply; 3+ messages in thread
From: Larry Finger @ 2011-05-11 16:17 UTC (permalink / raw)
  To: John W Linville; +Cc: chaoming_li, linux-wireless

The PCI routine of this driver is allocating receive buffers of order 2,
which causes an unnecessary fragmentation of memory. To make matters
worse, there are locations that fail to check for allocation failures,
or return success when the allocation actually failed. Kernel panics
result.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Cc: Stable <stable@vger.kernel.org>              [2.6.37 and 2.6.38]
---

John,

This is 2.6.39 material. I hope we make the cutoff.

Larry
---

Index: wireless-testing-new/drivers/net/wireless/rtlwifi/pci.c
===================================================================
--- wireless-testing-new.orig/drivers/net/wireless/rtlwifi/pci.c
+++ wireless-testing-new/drivers/net/wireless/rtlwifi/pci.c
@@ -732,10 +732,12 @@ static void _rtl_pci_rx_interrupt(struct
 					    false))) {
 						dev_kfree_skb_any(skb);
 					} else {
-						struct sk_buff *uskb = NULL;
+						struct sk_buff *uskb;
 						u8 *pdata;
 						uskb = dev_alloc_skb(skb->len
 								     + 128);
+						if (!uskb)
+							return;
 						memcpy(IEEE80211_SKB_RXCB(uskb),
 						       &rx_status,
 						       sizeof(rx_status));
@@ -996,7 +998,7 @@ static void _rtl_pci_init_trx_var(struct
 	 */
 	rtlpci->txringcount[BE_QUEUE] = RT_TXDESC_NUM_BE_QUEUE;
 
-	rtlpci->rxbuffersize = 9100;	/*2048/1024; */
+	rtlpci->rxbuffersize = 4096;
 	rtlpci->rxringcount = RTL_PCI_MAX_RX_COUNT;	/*64; */
 }
 
@@ -1118,7 +1120,7 @@ static int _rtl_pci_init_rx_ring(struct
 			    dev_alloc_skb(rtlpci->rxbuffersize);
 			u32 bufferaddress;
 			if (!skb)
-				return 0;
+				return -ENOMEM;
 			entry = &rtlpci->rx_ring[rx_queue_idx].desc[i];
 
 			/*skb->dev = dev; */

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-05-11 16:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-11 16:17 [PATCH] rtlwifi: Fix panic due to memory allocation failure Larry Finger
2011-05-11 16:28 ` Christian Lamparter
2011-05-11 16:36   ` Larry Finger

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.