Skip to content

Commit

Permalink
packet_trace: fix arp request src/dst addresses
Browse files Browse the repository at this point in the history
Signed-off-by: Robin Jarry <[email protected]>
  • Loading branch information
rjarry committed Jun 2, 2024
1 parent 01d2a8a commit 7a30104
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/infra/datapath/br_datapath.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ static inline void trace_packet(const char *node, const struct rte_mbuf *m) {
buf + n,
sizeof(buf) - n,
" / ARP request who has %s? tell %s",
src,
dst
dst,
src
);
break;
case RTE_ARP_OP_REPLY:
Expand Down

0 comments on commit 7a30104

Please sign in to comment.