aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmerigo Wang <amwang@redhat.com>2012-12-09 21:24:08 -0500
committerDavid S. Miller <davem@davemloft.net>2012-12-10 13:46:28 -0500
commit008d4278072216bd2459a6e41b07b688fe95ee83 (patch)
tree87b27dd47918bc96e2dc0803a7640a822a827f46
parent2062cc20d0a8e370163efccbee555347e17100c0 (diff)
virtio_net: fix a typo in virtnet_alloc_queues()
Obviously it should check !vi->rq. Reported-by: Fengguang Wu <fengguang.wu@intel.com> Cc: Jason Wang <jasowang@redhat.com> Cc: David S. Miller <davem@davemloft.net> Signed-off-by: Cong Wang <amwang@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/virtio_net.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index a644eebb31d..68d64f0313e 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -1347,7 +1347,7 @@ static int virtnet_alloc_queues(struct virtnet_info *vi)
1347 if (!vi->sq) 1347 if (!vi->sq)
1348 goto err_sq; 1348 goto err_sq;
1349 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL); 1349 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
1350 if (!vi->sq) 1350 if (!vi->rq)
1351 goto err_rq; 1351 goto err_rq;
1352 1352
1353 INIT_DELAYED_WORK(&vi->refill, refill_work); 1353 INIT_DELAYED_WORK(&vi->refill, refill_work);