examples/vmdq: fix Tx queue id
This patch fixes a core id issue in sample vmdq, in case core mask doesn't start with lcore_id 0 but 20, for instance, queue id should use core_id instead of lcore_id. Signed-off-by: Ouyang Changchun <changchun.ouyang@intel.com> Tested-by: Waterman Cao <waterman.cao@intel.com> Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
This commit is contained in:
parent
60a70d4e04
commit
c2bebe5f5a
@ -534,7 +534,7 @@ lcore_main(__attribute__((__unused__)) void* dummy)
|
||||
update_mac_address(buf[i], dport);
|
||||
|
||||
const uint16_t txCount = rte_eth_tx_burst(dport,
|
||||
lcore_id, buf, rxCount);
|
||||
core_id, buf, rxCount);
|
||||
|
||||
if (txCount != rxCount) {
|
||||
for (i = txCount; i < rxCount; i++)
|
||||
|
Loading…
x
Reference in New Issue
Block a user