public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] netpoll: WARN_ONCE for start_xmit returns with interrupts enabled
@ 2009-08-19 10:43 DDD
  2009-08-19 10:43 ` Matt Mackall
  0 siblings, 1 reply; 3+ messages in thread
From: DDD @ 2009-08-19 10:43 UTC (permalink / raw)
  To: Matt Mackall; +Cc: linux-kernel, Ingo Molnar

The NETPOLL API requires that interrupts remain disabled in
netpoll_send_skb().

Add a WARN_ONCE when ndo_start_xmit returns with interrupts enabled
in netpoll_send_skb().

Signed-off-by: Dongdong Deng <dongdong.deng@windriver.com>
---
 net/core/netpoll.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/net/core/netpoll.c b/net/core/netpoll.c
index df30feb..d38103f 100644
--- a/net/core/netpoll.c
+++ b/net/core/netpoll.c
@@ -319,6 +319,12 @@ static void netpoll_send_skb(struct netpoll *np, struct sk_buff *skb)
 
 			udelay(USEC_PER_POLL);
 		}
+
+		WARN_ONCE(!irqs_disabled(),
+			KERN_WARNING "netpoll_send_skb(): [net driver %s]"
+			"ndo_start_xmit() shouldn't return with interrupts"
+			"enabled!", dev->name);
+
 		local_irq_restore(flags);
 	}
 
-- 
1.6.0.4



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

end of thread, other threads:[~2009-08-20 10:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-19 10:43 [PATCH] netpoll: WARN_ONCE for start_xmit returns with interrupts enabled DDD
2009-08-19 10:43 ` Matt Mackall
2009-08-20 10:44   ` DDD

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox