Re: [dpdk-dev] [PATCH V1 1/2] examples/ethtool: fix data type of MTU

2021-11-17 Thread lihuisong (C)
在 2021/11/18 1:49, David Marchand 写道: On Thu, Apr 29, 2021 at 12:53 PM Min Hu (Connor) wrote: From: Huisong Li This patch changes the data type of 'mtu' in rte_ethtool_net_change_mtu() from 'int' to 'uint16_t'. You did not describe why this change is needed. Ensure that the input paramet

Re: [dpdk-dev] [PATCH V1 1/2] examples/ethtool: fix data type of MTU

2021-11-17 Thread David Marchand
On Thu, Apr 29, 2021 at 12:53 PM Min Hu (Connor) wrote: > > From: Huisong Li > > This patch changes the data type of 'mtu' in rte_ethtool_net_change_mtu() > from 'int' to 'uint16_t'. You did not describe why this change is needed. > > Fixes: bda68ab9d1e7 ("examples/ethtool: add user-space etht

[dpdk-dev] [PATCH V1 1/2] examples/ethtool: fix data type of MTU

2021-04-29 Thread Min Hu (Connor)
From: Huisong Li This patch changes the data type of 'mtu' in rte_ethtool_net_change_mtu() from 'int' to 'uint16_t'. Fixes: bda68ab9d1e7 ("examples/ethtool: add user-space ethtool sample application") Cc: sta...@dpdk.org Signed-off-by: Huisong Li --- examples/ethtool/ethtool-app/ethapp.c | 6