> -----Original Message----- > From: Rakesh Kudurumalla > Sent: Monday, January 1, 2024 2:07 PM > To: Sunil Kumar Kori ; Rakesh Kudurumalla > > Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; Nithin > Kumar Dabilpuram > Subject: [PATCH v8 3/3] app/graph: implement port forward usecase > > Added portforward usecase.In this usecase packets received Rx port is > forwarded to respective Tx port. > > Signed-off-by: Rakesh Kudurumalla > --- > app/graph/ethdev.c | 13 ++ > app/graph/ethdev.h | 1 + > app/graph/examples/l2fwd.cli | 41 +++++ > app/graph/examples/l2fwd_pcap.cli | 37 +++++ > app/graph/graph.c | 8 +- > app/graph/l2fwd.c | 152 +++++++++++++++++++ > app/graph/l2fwd.h | 11 ++ > app/graph/meson.build | 1 + > app/graph/module_api.h | 1 + > doc/guides/tools/graph.rst | 21 +++ > doc/guides/tools/img/graph-usecase-l2fwd.svg | 92 +++++++++++ > 11 files changed, 377 insertions(+), 1 deletion(-) create mode 100644 > app/graph/examples/l2fwd.cli create mode 100644 > app/graph/examples/l2fwd_pcap.cli create mode 100644 > app/graph/l2fwd.c create mode 100644 app/graph/l2fwd.h create mode > 100644 doc/guides/tools/img/graph-usecase-l2fwd.svg > Acked-by: Sunil Kumar Kori > 2.25.1