Re: Lockup with 2.6.9-ac15 related to netconsole

From: Patrick McHardy
Date: Wed Dec 22 2004 - 04:36:41 EST


Francois Romieu wrote:
Marc, if the patch below happens to work, it should not drop messages
like the previous one (it is an ugly short-term suggestion).


- spin_lock(&np->dev->xmit_lock);
+ while (!spin_trylock(&np->dev->xmit_lock)) {
+ if (np->dev->xmit_lock_owner == smp_processor_id()) {
+ struct Qdisc *q = dev->qdisc;
+
+ q->ops->enqueue(skb, q);

Shouldn't this be requeue ?

Regards
Patrick
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/