public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: question on context of kfree_skb()
@ 2002-12-30 22:32 Manfred Spraul
  2002-12-31  0:57 ` Oliver Neukum
  0 siblings, 1 reply; 5+ messages in thread
From: Manfred Spraul @ 2002-12-30 22:32 UTC (permalink / raw)
  To: Muli Ben-Yehuda; +Cc: Oliver Neukum, linux-kernel

Mulix wrote:

>dev_kfree_skb_any() should be called when you could be either
>executing in interrupt context or not. 
>
dev_kfree_skb_any() can misdetect the context: You must not use the 
function if you hold an irq spinlock and you might be running from BH or 
process context.

cpu 1:    cpu 2:
acquire one of the networking bh lock
             acquire the driver spin_lock_irq()
hardware interrupt
try to acquire the driver irq spinlock
--> spin.
              dev_kfree_skb_any(): !in_irq(), calls kfree_skb
              kfree_skb tries to acquire the network lock that
              cpu 1 owns
              --> spin.

And deadlock.

--
    Manfred




^ permalink raw reply	[flat|nested] 5+ messages in thread
* question on context of kfree_skb()
@ 2002-12-30 18:32 Oliver Neukum
  2002-12-30 22:26 ` Muli Ben-Yehuda
  0 siblings, 1 reply; 5+ messages in thread
From: Oliver Neukum @ 2002-12-30 18:32 UTC (permalink / raw)
  To: linux-kernel

Hi,

I am getting reports about kfree_skb being called in hard IRQ.
Which context should it be called in?

	Regards
		Oliver


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

end of thread, other threads:[~2002-12-31  9:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-12-30 22:32 question on context of kfree_skb() Manfred Spraul
2002-12-31  0:57 ` Oliver Neukum
2002-12-31  9:31   ` Manfred Spraul
  -- strict thread matches above, loose matches on Subject: below --
2002-12-30 18:32 Oliver Neukum
2002-12-30 22:26 ` Muli Ben-Yehuda

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