Re: timer_bh robusteness fix against potential deadlocks

David S. Miller (davem@redhat.com)
Tue, 11 Jan 2000 18:40:23 -0800


Date: Wed, 12 Jan 2000 02:49:56 +0100 (CET)
From: Andrea Arcangeli <andrea@suse.de>

@@ -1044,6 +1044,8 @@
*/
if(tcp_in_quickack_mode(tp))
tcp_exit_quickack_mode(tp);
+ if (!tp->ato)
+ tp->ato = tp->rto;
tcp_send_delayed_ack(tp, HZ/2);
return;
}

Yep, I bet this is it. Good spotting.

Both of these fixes to tcp_output.c are in my tree now.

Later,
David S. Miller
davem@redhat.com

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