app/testpmd: print extended flow director info
Extended fdir info is printed in rxonly fwd engine when fdir match. Signed-off-by: Jingjing Wu <jingjing.wu@intel.com> Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
This commit is contained in:
parent
5a21d9715f
commit
f222e8eeab
@ -167,10 +167,18 @@ pkt_burst_receive(struct fwd_stream *fs)
|
||||
if (ol_flags & PKT_RX_RSS_HASH) {
|
||||
printf(" - RSS hash=0x%x", (unsigned) mb->hash.rss);
|
||||
printf(" - RSS queue=0x%x",(unsigned) fs->rx_queue);
|
||||
} else if (ol_flags & PKT_RX_FDIR) {
|
||||
printf(" - FDIR matched ");
|
||||
if (ol_flags & PKT_RX_FDIR_ID)
|
||||
printf("ID=0x%x",
|
||||
mb->hash.fdir.hi);
|
||||
else if (ol_flags & PKT_RX_FDIR_FLX)
|
||||
printf("flex bytes=0x%08x %08x",
|
||||
mb->hash.fdir.hi, mb->hash.fdir.lo);
|
||||
else
|
||||
printf("hash=0x%x ID=0x%x ",
|
||||
mb->hash.fdir.hash, mb->hash.fdir.id);
|
||||
}
|
||||
else if (ol_flags & PKT_RX_FDIR)
|
||||
printf(" - FDIR hash=0x%x - FDIR id=0x%x ",
|
||||
mb->hash.fdir.hash, mb->hash.fdir.id);
|
||||
if (ol_flags & PKT_RX_VLAN_PKT)
|
||||
printf(" - VLAN tci=0x%x", mb->vlan_tci);
|
||||
if (is_encapsulation) {
|
||||
|
Loading…
Reference in New Issue
Block a user