Re: [PATCH 01/18] vhost_net: remove the meaningless assignment in vhost_net_start_one()

2021-06-24 Thread Jason Wang
在 2021/6/21 下午7:45, Eli Cohen 写道: On Mon, Jun 21, 2021 at 12:16:33PM +0800, Jason Wang wrote: The nvqs and vqs has been initialized during vhost_net_init() and is I suggest "nvqs and vqs have been initialized during vhost_net_init() and are not..." Other than that Reviewed-by: Eli Cohen W

Re: [PATCH 01/18] vhost_net: remove the meaningless assignment in vhost_net_start_one()

2021-06-21 Thread Eli Cohen
On Mon, Jun 21, 2021 at 12:16:33PM +0800, Jason Wang wrote: > The nvqs and vqs has been initialized during vhost_net_init() and is I suggest "nvqs and vqs have been initialized during vhost_net_init() and are not..." Other than that Reviewed-by: Eli Cohen > not expected to change during the life

[PATCH 01/18] vhost_net: remove the meaningless assignment in vhost_net_start_one()

2021-06-20 Thread Jason Wang
The nvqs and vqs has been initialized during vhost_net_init() and is not expected to change during the life cycle of vhost_net structure. So this patch removes the meaningless assignment. Signed-off-by: Jason Wang --- hw/net/vhost_net.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/hw/ne