From: Beilei Xing Date: Thu, 30 Nov 2017 06:36:08 +0000 (+0800) Subject: net/i40e: fix FDIR rule confiliction issue X-Git-Tag: spdx-start~472 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=301c2abeef640cf545d7763c5760d66593640e49;p=dpdk.git net/i40e: fix FDIR rule confiliction issue Failed to create two FDIR rules with different vlan id for the same PCTYPE. Root cause is that wrong hash key length is used. Fixes: 4149825bbdb9 ("net/i40e: finish integration FDIR with generic flow API") Cc: stable@dpdk.org Signed-off-by: Beilei Xing Acked-by: Qi Zhang --- diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c index 6a0d77dcf3..df4571d780 100644 --- a/drivers/net/i40e/i40e_ethdev.c +++ b/drivers/net/i40e/i40e_ethdev.c @@ -977,7 +977,7 @@ i40e_init_fdir_filter_list(struct rte_eth_dev *dev) struct rte_hash_parameters fdir_hash_params = { .name = fdir_hash_name, .entries = I40E_MAX_FDIR_FILTER_NUM, - .key_len = sizeof(struct rte_eth_fdir_input), + .key_len = sizeof(struct i40e_fdir_input), .hash_func = rte_hash_crc, .hash_func_init_val = 0, .socket_id = rte_socket_id(),