app/graph: generate cmdline boilerplateUse the dpdk-cmdline-gen script to autogenerate all the boilerplatestructs and defines for the commandline part of the application.Signed-off-by: Sunil Kum
app/graph: generate cmdline boilerplateUse the dpdk-cmdline-gen script to autogenerate all the boilerplatestructs and defines for the commandline part of the application.Signed-off-by: Sunil Kumar Kori <skori@marvell.com>Acked-by: Bruce Richardson <bruce.richardson@intel.com>Acked-by: Nithin Dabilpuram <ndabilpuram@marvell.com>
show more ...
app/graph: add port forward use caseAdded portforward usecase. In this usecase,packets received Rx port is forwarded torespective Tx port.Signed-off-by: Rakesh Kudurumalla <rkudurumalla@marvell
app/graph: add port forward use caseAdded portforward usecase. In this usecase,packets received Rx port is forwarded torespective Tx port.Signed-off-by: Rakesh Kudurumalla <rkudurumalla@marvell.com>Acked-by: Sunil Kumar Kori <skori@marvell.com>
app/graph: add l3fwd use caseAdds an use case l3fwd. It contains a dedicated l3fwd.cli filementioning commands to configure the required resources.Once application successfully parses the l3fwd.
app/graph: add l3fwd use caseAdds an use case l3fwd. It contains a dedicated l3fwd.cli filementioning commands to configure the required resources.Once application successfully parses the l3fwd.cli then a graph iscreated having below nodes: - ethdev_rx -> pkt_cls - pkt_cls -> ip4_lookup - pkt_cls -> ip6_lookup - pkt_cls -> pkt_drop - ip4_lookup -> ip4_rewrite - ip4_lookup -> pkt_drop - ip6_lookup -> ip6_rewrite - ip6_lookup -> pkt_drop - ip4_rewrite -> ethdev_tx - ip4_rewrite -> pkt_drop - ip6_rewrite -> ethdev_tx - ip6_rewrite -> pkt_drop - ethdev_tx -> pkt_dropSigned-off-by: Sunil Kumar Kori <skori@marvell.com>Signed-off-by: Rakesh Kudurumalla <rkudurumalla@marvell.com>Acked-by: Jerin Jacob <jerinj@marvell.com>