Re: [dpdk-dev] [PATCH v2] app/testpmd: fix DCB set failure

2020-05-18 Thread Ferruh Yigit
On 5/12/2020 11:13 AM, Ting Xu wrote: > When set DCB in testpmd, there is a segmentation fault. It is > because the local variable rss_conf in get_eth_dcb_conf() > is not cleared, so that the pointer member variable rss_key has > a random address, which leads to an error in the following > processi

[dpdk-dev] [PATCH v2] app/testpmd: fix DCB set failure

2020-05-11 Thread Ting Xu
When set DCB in testpmd, there is a segmentation fault. It is because the local variable rss_conf in get_eth_dcb_conf() is not cleared, so that the pointer member variable rss_key has a random address, which leads to an error in the following processing. This patch initialized the local variable rs