[dpdk-dev] app/test-pmd: Use the new rss_hf size changed in 1.7

Message ID 1415374981-34047-1-git-send-email-jyu@vmware.com (mailing list archive)
State Accepted, archived
Headers

Commit Message

Jia Yu Nov. 7, 2014, 3:43 p.m. UTC
  According to rss_hf definition in rte_eth_rss_conf, it shall be uint64 type.
Using uint16 will get truncated value, and cause incorrect output. This
fix corrected this issue.

Signed-off-by: Jia Yu <jyu@vmware.com>
---
 app/test-pmd/config.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Thomas Monjalon Nov. 27, 2014, 5:25 p.m. UTC | #1
> According to rss_hf definition in rte_eth_rss_conf, it shall be uint64 type.
> Using uint16 will get truncated value, and cause incorrect output. This
> fix corrected this issue.
> 
> Signed-off-by: Jia Yu <jyu@vmware.com>

Acked and applied.
  

Patch

diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c
index 9bc08f4..b34b0b2 100644
--- a/app/test-pmd/config.c
+++ b/app/test-pmd/config.c
@@ -804,7 +804,7 @@  port_rss_hash_conf_show(portid_t port_id, int show_rss_key)
 {
 	struct rte_eth_rss_conf rss_conf;
 	uint8_t rss_key[10 * 4];
-	uint16_t rss_hf;
+	uint64_t rss_hf;
 	uint8_t i;
 	int diag;