linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [patch] 2.4.20-pre9 - drivers/atm/iphase.c : GFP_KERNEL with spinlock held
@ 2002-10-05 20:54 Francois Romieu
  2002-10-07 19:13 ` Marcelo Tosatti
  0 siblings, 1 reply; 5+ messages in thread
From: Francois Romieu @ 2002-10-05 20:54 UTC (permalink / raw)
  To: linux-kernel; +Cc: Marcelo Tosatti

drivers/atm/iphase.c:tx_intr()
[...]
   1684            spin_lock_irqsave(&iadev->tx_lock, flags);
   1685            ia_tx_poll(iadev);

ia_tx_poll ->
 ia_hack_tcq ->
  ia_enque_rtn_q ->
   IARTN_Q *entry = kmalloc(sizeof(*entry), GFP_KERNEL);

Driver does not seem maintained. Please apply.

--- linux-2.4.20-pre9.orig/drivers/atm/iphase.c	Sat Oct  5 15:51:28 2002
+++ linux-2.4.20-pre9/drivers/atm/iphase.c	Sat Oct  5 22:44:18 2002
@@ -124,7 +124,7 @@ static void ia_enque_head_rtn_q (IARTN_Q
 }
 
 static int ia_enque_rtn_q (IARTN_Q *que, struct desc_tbl_t data) {
-   IARTN_Q *entry = kmalloc(sizeof(*entry), GFP_KERNEL);
+   IARTN_Q *entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
    if (!entry) return -1;
    entry->data = data;
    entry->next = NULL;


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

end of thread, other threads:[~2002-10-08 10:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-10-05 20:54 [patch] 2.4.20-pre9 - drivers/atm/iphase.c : GFP_KERNEL with spinlock held Francois Romieu
2002-10-07 19:13 ` Marcelo Tosatti
2002-10-07 22:15   ` Francois Romieu
2002-10-08  8:46     ` Adrian Bunk
2002-10-08 11:01       ` Francois Romieu

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