From patchwork Thu Sep 17 16:03:21 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jasvinder Singh X-Patchwork-Id: 7061 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 0F31912A8; Thu, 17 Sep 2015 18:04:05 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id EF85D11A2 for ; Thu, 17 Sep 2015 18:04:03 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP; 17 Sep 2015 09:03:33 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,548,1437462000"; d="scan'208";a="646884246" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga003.jf.intel.com with ESMTP; 17 Sep 2015 09:03:24 -0700 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id t8HG3NV2008056; Thu, 17 Sep 2015 17:03:23 +0100 Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id t8HG3NgT010093; Thu, 17 Sep 2015 17:03:23 +0100 Received: (from jasvinde@localhost) by sivswdev02.ir.intel.com with id t8HG3Npp010089; Thu, 17 Sep 2015 17:03:23 +0100 From: Jasvinder Singh To: dev@dpdk.org Date: Thu, 17 Sep 2015 17:03:21 +0100 Message-Id: <1442505802-10034-4-git-send-email-jasvinder.singh@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1442505802-10034-1-git-send-email-jasvinder.singh@intel.com> References: <1442505802-10034-1-git-send-email-jasvinder.singh@intel.com> Subject: [dpdk-dev] [PATCH v2 3/4] ip_pipeline: modify lpm table for routing pipeline X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The name parameter has been defined in lpm table of routing pipeline. Signed-off-by: Jasvinder Singh --- examples/ip_pipeline/pipeline/pipeline_routing_be.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/ip_pipeline/pipeline/pipeline_routing_be.c b/examples/ip_pipeline/pipeline/pipeline_routing_be.c index 1e817dd..06d3e65 100644 --- a/examples/ip_pipeline/pipeline/pipeline_routing_be.c +++ b/examples/ip_pipeline/pipeline/pipeline_routing_be.c @@ -484,6 +484,7 @@ pipeline_routing_init(struct pipeline_params *params, p->n_tables = 1; { struct rte_table_lpm_params table_lpm_params = { + .name = p->name, .n_rules = p_rt->n_routes, .entry_unique_size = sizeof(struct routing_table_entry), .offset = p_rt->ip_da_offset,