netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [patch] bug prematurely setting nr_frags
@ 2002-08-09 20:14 Benjamin LaHaise
  2002-08-11 21:07 ` kuznet
  0 siblings, 1 reply; 6+ messages in thread
From: Benjamin LaHaise @ 2002-08-09 20:14 UTC (permalink / raw)
  To: davem, netdev

Hello Dave et al,

The patch below fixes a case where nr_frags will be incorrectly set when an 
allocation fails in sock_alloc_send_pskb.  This bug was found while trying 
to track down a problem that shows up as an oops attempting to free a page 
that comes from an uninitialized fragment entry in an skb, and this problem 
looks like a possible causes.  Thanks goes to Stephen Tweedie for digging 
through the crash dump to find several key bits of data.

		-ben
-- 
"You will be reincarnated as a toad; and you will be much happier."

:r ~/patches/v2.4/v2.4.20-pre1-nr_frags.diff
diff -urN v2.4.20-pre1/net/core/sock.c net-2.4.20-pre1/net/core/sock.c
--- v2.4.20-pre1/net/core/sock.c	Fri Aug  9 13:50:46 2002
+++ net-2.4.20-pre1/net/core/sock.c	Fri Aug  9 15:46:46 2002
@@ -785,7 +785,6 @@
 
 				npages = (data_len + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
 				skb->truesize += data_len;
-				skb_shinfo(skb)->nr_frags = npages;
 				for (i = 0; i < npages; i++) {
 					struct page *page;
 					skb_frag_t *frag;
@@ -804,6 +803,9 @@
 						      PAGE_SIZE :
 						      data_len);
 					data_len -= PAGE_SIZE;
+
+					/* frag[i] is now initialized */
+					skb_shinfo(skb)->nr_frags = i + 1;
 				}
 
 				/* Full success... */

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

end of thread, other threads:[~2002-08-13 22:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-08-09 20:14 [patch] bug prematurely setting nr_frags Benjamin LaHaise
2002-08-11 21:07 ` kuznet
2002-08-12 23:07   ` Benjamin LaHaise
2002-08-13  4:06     ` kuznet
2002-08-13 18:31       ` Benjamin LaHaise
2002-08-13 22:27         ` kuznet

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).