Re: [dpdk-dev] [PATCH v3] net/ixgbe: fix rss_conf sizeof argument

2019-10-24 Thread Ye Xiaolong
On 08/08, Congwen Zhang wrote: >In function ixgbe_parse_rss_filter, memset(rss_conf, 0, >sizeof(struct rte_eth_rss_conf)) is using >memset(aaa, 0, sizeof(struct bbb)) format, >maybe it's better to make it consistent with others. > >Fixes: 518cc3927b13 ("net/ixgbe: move RSS to flow API") >Cc: sta...

Re: [dpdk-dev] [PATCH v3] net/ixgbe: fix rss_conf sizeof argument

2019-08-07 Thread Ye Xiaolong
On 08/08, Congwen Zhang wrote: >In function ixgbe_parse_rss_filter, memset(rss_conf, 0, >sizeof(struct rte_eth_rss_conf)) is using >memset(aaa, 0, sizeof(struct bbb)) format, >maybe it's better to make it consistent with others. Er...These comments are just for the style of memset, putting them in

[dpdk-dev] [PATCH v3] net/ixgbe: fix rss_conf sizeof argument

2019-08-07 Thread Congwen Zhang
In function ixgbe_parse_rss_filter, memset(rss_conf, 0, sizeof(struct rte_eth_rss_conf)) is using memset(aaa, 0, sizeof(struct bbb)) format, maybe it's better to make it consistent with others. Fixes: 518cc3927b13 ("net/ixgbe: move RSS to flow API") Cc: sta...@dpdk.org Signed-off-by: Congwen Zhan