Prev: [021/140] CIFS: Fix a malicious redirect problem in the DNS lookup code
Next: [096/205] rtc: fix ds1388 time corruption
From: Greg KH on 30 Jul 2010 14:00 2.6.34-stable review patch. If anyone has any objections, please let us know. ------------------ From: Michael S. Tsirkin <mst(a)redhat.com> commit 1788f49548860fa1c861ee3454d47b466c877e43 upstream. We currently fill all of RX ring, then add_buf returns ENOSPC, which gets mis-detected as an out of memory condition and causes us to reschedule the work, and so on forever. Fix this by oom = err == -ENOMEM; Signed-off-by: Michael S. Tsirkin <mst(a)redhat.com> Signed-off-by: Rusty Russell <rusty(a)rustcorp.com.au> Signed-off-by: David S. Miller <davem(a)davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh(a)suse.de> --- drivers/net/virtio_net.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_net.c @@ -417,7 +417,7 @@ static int add_recvbuf_mergeable(struct static bool try_fill_recv(struct virtnet_info *vi, gfp_t gfp) { int err; - bool oom = false; + bool oom; do { if (vi->mergeable_rx_bufs) @@ -427,10 +427,9 @@ static bool try_fill_recv(struct virtnet else err = add_recvbuf_small(vi, gfp); - if (err < 0) { - oom = true; + oom = err == -ENOMEM; + if (err < 0) break; - } ++vi->num; } while (err > 0); if (unlikely(vi->num > vi->max)) -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |