> -----Original Message-----
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Wang Ying A
> Sent: Friday, April 12, 2019 9:52 PM
> To: Lu, Wenzhuo <wenzhuo...@intel.com>; Yang, Qiming
> <qiming.y...@intel.com>
> Cc: dev@dpdk.org; Wang, Ying A <ying.a.w...@intel.com>; sta...@dpdk.org
> Subject: [dpdk-dev] [PATCH 1/2] net/ice: code clean

Better to change title to "fix wrong type", since it's actually a bug fix.
> 
> Variable "status" should be difined as "int" instead of "uint_16t".
> This patch fixes the issue.

Some typo

> 
> Fixes: c945e4bf9063 ("net/ice: support promiscuous mode")
> Cc: sta...@dpdk.org
> 
> Signed-off-by: Wang Ying A <ying.a.w...@intel.com>
> ---
>  drivers/net/ice/ice_ethdev.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/net/ice/ice_ethdev.c b/drivers/net/ice/ice_ethdev.c index
> 9d01018..72831bb 100644
> --- a/drivers/net/ice/ice_ethdev.c
> +++ b/drivers/net/ice/ice_ethdev.c
> @@ -2753,7 +2753,7 @@ static int ice_macaddr_set(struct rte_eth_dev *dev,
>       struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
>       struct ice_vsi *vsi = pf->main_vsi;
>       uint8_t pmask;
> -     uint16_t status;
> +     int status;

Can we use enum ice_status directly here?
Since I saw it will be compared with a enum value ICE_SUCCESS later.

> 
>       pmask = ICE_PROMISC_UCAST_RX | ICE_PROMISC_UCAST_TX |
>               ICE_PROMISC_MCAST_RX | ICE_PROMISC_MCAST_TX; @@ -2769,7
> +2769,7 @@ static int ice_macaddr_set(struct rte_eth_dev *dev,
>       struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
>       struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
>       struct ice_vsi *vsi = pf->main_vsi;
> -     uint16_t status;
> +     int status;
>       uint8_t pmask;
> 
>       pmask = ICE_PROMISC_UCAST_RX | ICE_PROMISC_UCAST_TX | @@
> -2787,7 +2787,7 @@ static int ice_macaddr_set(struct rte_eth_dev *dev,
>       struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
>       struct ice_vsi *vsi = pf->main_vsi;
>       uint8_t pmask;
> -     uint16_t status;
> +     int status;
> 
>       pmask = ICE_PROMISC_MCAST_RX | ICE_PROMISC_MCAST_TX;
> 
> @@ -2802,7 +2802,7 @@ static int ice_macaddr_set(struct rte_eth_dev *dev,
>       struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
>       struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
>       struct ice_vsi *vsi = pf->main_vsi;
> -     uint16_t status;
> +     int status;
>       uint8_t pmask;
> 
>       if (dev->data->promiscuous == 1)
> --
> 1.8.3.1

Reply via email to