Re: [dpdk-dev] [PATCH v1] net/virtio: simplify variable name

2020-06-30 Thread Maxime Coquelin
On 6/30/20 9:27 AM, Maxime Coquelin wrote: > > > On 6/24/20 10:45 AM, Joyce Kong wrote: >> Virtio_hw *hw has been pointed to vq->hw, it is better to use >> hw instead of vq->hw in later code. >> >> Signed-off-by: Joyce Kong >> --- >> drivers/net/virtio/virtio_rxtx_simple_neon.c | 4 ++-- >>

Re: [dpdk-dev] [PATCH v1] net/virtio: simplify variable name

2020-06-30 Thread Maxime Coquelin
On 6/24/20 10:45 AM, Joyce Kong wrote: > Virtio_hw *hw has been pointed to vq->hw, it is better to use > hw instead of vq->hw in later code. > > Signed-off-by: Joyce Kong > --- > drivers/net/virtio/virtio_rxtx_simple_neon.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff

Re: [dpdk-dev] [PATCH v1] net/virtio: simplify variable name

2020-06-27 Thread Xia, Chenbo
; Cc: dev@dpdk.org; n...@arm.com > Subject: [dpdk-dev] [PATCH v1] net/virtio: simplify variable name > > Virtio_hw *hw has been pointed to vq->hw, it is better to use hw instead of > vq- > >hw in later code. > > Signed-off-by: Joyce Kong > --- > drivers/net/virtio/v

Re: [dpdk-dev] [PATCH v1] net/virtio: simplify variable name

2020-06-24 Thread Honnappa Nagarahalli
> Subject: [PATCH v1] net/virtio: simplify variable name > > Virtio_hw *hw has been pointed to vq->hw, it is better to use hw instead of > vq->hw in later code. > > Signed-off-by: Joyce Kong Reviewed-by: Honnappa Nagarahalli > --- > drivers/net/virtio/virtio_rxtx_simple_neon.c | 4 ++-- > 1

[dpdk-dev] [PATCH v1] net/virtio: simplify variable name

2020-06-24 Thread Joyce Kong
Virtio_hw *hw has been pointed to vq->hw, it is better to use hw instead of vq->hw in later code. Signed-off-by: Joyce Kong --- drivers/net/virtio/virtio_rxtx_simple_neon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/virtio/virtio_rxtx_simple_neon.c b/dri