test case
For ixgbe nic, we want to assign a tx hardware qeueue to each cpu,
and the tx softirq should use the corresponding hardware queue.
each packet will select a softqueue in dev_queue_xmit
,
we rewrite ixgbe driver ndo_select_queue
(ixgbe_select_queue
),
which will return current cpu index(based 0) when packet select queue.
thus for each cpu use its own tx queue.
but, we found some packet had unmatched queue index when send
on specific cpu.
for example, a packet’s queue index is 5 but is sent by cpu3,
thus, cpu3 will operate tx hw queue5, which should only be done by cpu5.