lpm: fix pipeline apps

Updated ip_pipeline app is using new changes from LPM library
(Increased number of next hops and added new config structure
for LPM IPv4).

Fixes: f1f7261838b3 ("lpm: add a new config structure for IPv4")

Signed-off-by: Michal Kobylinski <michalx.kobylinski@intel.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
This commit is contained in:
Michal Kobylinski 2016-03-17 09:47:25 +01:00 committed by Thomas Monjalon
parent b3869ebebf
commit 53efd8ecad
2 changed files with 12 additions and 0 deletions

View File

@ -47,6 +47,10 @@
#include "main.h"
#ifndef PIPELINE_LPM_TABLE_NUMBER_TABLE8s
#define PIPELINE_LPM_TABLE_NUMBER_TABLE8s 256
#endif
void
app_main_loop_worker_pipeline_lpm(void) {
struct rte_pipeline_params pipeline_params = {
@ -113,6 +117,8 @@ app_main_loop_worker_pipeline_lpm(void) {
struct rte_table_lpm_params table_lpm_params = {
.name = "LPM",
.n_rules = 1 << 24,
.number_tbl8s = PIPELINE_LPM_TABLE_NUMBER_TABLE8s,
.flags = 0,
.entry_unique_size =
sizeof(struct rte_pipeline_table_entry),
.offset = APP_METADATA_OFFSET(32),

View File

@ -67,6 +67,10 @@
#define MAC_SRC_DEFAULT 0x112233445566
#ifndef PIPELINE_ROUTING_LPM_TABLE_NUMBER_TABLE8s
#define PIPELINE_ROUTING_LPM_TABLE_NUMBER_TABLE8s 256
#endif
struct pipeline_routing {
struct pipeline p;
struct pipeline_routing_params params;
@ -1284,6 +1288,8 @@ pipeline_routing_init(struct pipeline_params *params,
struct rte_table_lpm_params table_lpm_params = {
.name = p->name,
.n_rules = p_rt->params.n_routes,
.number_tbl8s = PIPELINE_ROUTING_LPM_TABLE_NUMBER_TABLE8s,
.flags = 0,
.entry_unique_size = sizeof(struct routing_table_entry),
.offset = p_rt->params.ip_hdr_offset +
__builtin_offsetof(struct ipv4_hdr, dst_addr),