net: virtio: simplify the virtnet_find_vqs
Use the common free functions while return successfully. Signed-off-by: Tonghao Zhang <xiangxia.m.yue@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f624434a0e
commit
2fa3c8a8b2
|
@ -2609,12 +2609,8 @@ static int virtnet_find_vqs(struct virtnet_info *vi)
|
||||||
vi->sq[i].vq = vqs[txq2vq(i)];
|
vi->sq[i].vq = vqs[txq2vq(i)];
|
||||||
}
|
}
|
||||||
|
|
||||||
kfree(names);
|
/* run here: ret == 0. */
|
||||||
kfree(callbacks);
|
|
||||||
kfree(vqs);
|
|
||||||
kfree(ctx);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
err_find:
|
err_find:
|
||||||
kfree(ctx);
|
kfree(ctx);
|
||||||
|
|
Loading…
Reference in New Issue