Re: [PATCH net 1/2] virtio_net: separate the logic of checking whether sq is full

2023-03-07 Thread Jason Wang
On Mon, Mar 6, 2023 at 12:15 PM Xuan Zhuo wrote: > > Separate the logic of checking whether sq is full. The subsequent patch > will reuse this func. > > Signed-off-by: Xuan Zhuo > --- > drivers/net/virtio_net.c | 59 > 1 file changed, 35 insertions(+), 24

[PATCH net 1/2] virtio_net: separate the logic of checking whether sq is full

2023-03-05 Thread Xuan Zhuo
Separate the logic of checking whether sq is full. The subsequent patch will reuse this func. Signed-off-by: Xuan Zhuo --- drivers/net/virtio_net.c | 59 1 file changed, 35 insertions(+), 24 deletions(-) diff --git a/drivers/net/virtio_net.c b/drivers/ne