net/qede: fix ntuple filter configuration

PMD did not pass down the intended queue id while
configuring the ntuple filter.

Fixes: 622075356e ("net/qede: support ntuple and flow director filter")
Cc: stable@dpdk.org

Signed-off-by: Shahed Shaikh <shahed.shaikh@cavium.com>
This commit is contained in:
Shahed Shaikh 2018-08-07 22:38:34 -07:00 committed by Thomas Monjalon
parent 2e1141b6f1
commit 10191fcd1a

View File

@ -463,5 +463,8 @@ int qede_ntuple_filter_conf(struct rte_eth_dev *eth_dev,
udpv4_flow->src_port = ntuple->src_port;
udpv4_flow->dst_port = ntuple->dst_port;
}
fdir_entry.action.rx_queue = ntuple->queue;
return qede_config_cmn_fdir_filter(eth_dev, &fdir_entry, add);
}