Re: [dpdk-dev] [PATCH] net/i40e: adjust the RSS table

2018-12-02 Thread Zhang, Qi Z
> -Original Message- > From: Li, Xiaoyun > Sent: Friday, November 23, 2018 9:36 AM > To: Zhang, Qi Z > Cc: dev@dpdk.org; Li, Xiaoyun > Subject: [PATCH] net/i40e: adjust the RSS table > > When starting the device, the RSS table is set. For 8 queues, the RSS hash > table > would be lik

[dpdk-dev] [PATCH] net/i40e: adjust the RSS table

2018-11-22 Thread Xiaoyun Li
When starting the device, the RSS table is set. For 8 queues, the RSS hash table would be like | 3,2,1,0,7,6,5,4 | 3,2,1,0,7,6,5,4 |... This patch adjusts this table to set entries sequentially. Then for 8 queues, the RSS table would be like | 0,1,2,3,4,5,6,7 | 0,1,2,3,4,5,6,7 |... Signed-off-by: