[PATCH] drivers/bluetooth: Convert kfree/kfree_skb to dev_kfree_skb_irq

2007-11-21 Thread Julia Lawall
From: Julia Lawall <[EMAIL PROTECTED]> When values of type struct sk_buff * are freed from within an interrupt handler, dev_kfree_skb_irq should be used rather than kfree or kfree_skb. In most of the cases below, the function containing the free ends up as a URB completion callback. Such

[PATCH] drivers/bluetooth: Convert kfree/kfree_skb to dev_kfree_skb_irq

2007-11-21 Thread Julia Lawall
From: Julia Lawall [EMAIL PROTECTED] When values of type struct sk_buff * are freed from within an interrupt handler, dev_kfree_skb_irq should be used rather than kfree or kfree_skb. In most of the cases below, the function containing the free ends up as a URB completion callback. Such