From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id AFE174CE6 for ; Thu, 14 Jul 2016 18:07:01 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga103.fm.intel.com with ESMTP; 14 Jul 2016 09:06:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,363,1464678000"; d="scan'208";a="995303055" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga001.jf.intel.com with ESMTP; 14 Jul 2016 09:06:47 -0700 Received: from sivswdev01.ir.intel.com (sivswdev01.ir.intel.com [10.237.217.45]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id u6EG6klr024236; Thu, 14 Jul 2016 17:06:46 +0100 Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id u6EG6kLW030779; Thu, 14 Jul 2016 17:06:46 +0100 Received: (from bricha3@localhost) by sivswdev01.ir.intel.com with id u6EG6kxY030775; Thu, 14 Jul 2016 17:06:46 +0100 From: Bruce Richardson To: dev@dpdk.org Cc: Nikita Kozlov , Thomas Monjalon , Bruce Richardson Date: Thu, 14 Jul 2016 17:06:19 +0100 Message-Id: <1468512382-30412-3-git-send-email-bruce.richardson@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1468512382-30412-1-git-send-email-bruce.richardson@intel.com> References: <1465909410-4668-1-git-send-email-nikita@elyzion.net> <1468512382-30412-1-git-send-email-bruce.richardson@intel.com> Subject: [dpdk-dev] [PATCH v2 2/5] test: make all lpm routes be of unsigned type 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: , X-List-Received-Date: Thu, 14 Jul 2016 16:07:02 -0000 The one route that was different to the others in the test_lpm_routes.h file was the entry "{0, 8}" which was the only route without a "U" after the IP part. Add in the extra "U" to that entry so that it can be used as a check character when parsing routes manually. Signed-off-by: Bruce Richardson --- app/test/test_lpm_routes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_lpm_routes.h b/app/test/test_lpm_routes.h index 023b0f9..1decfee 100644 --- a/app/test/test_lpm_routes.h +++ b/app/test/test_lpm_routes.h @@ -281825,7 +281825,7 @@ static const struct route_rule large_route_table[] = {3536977920U, 17}, {3392992768U, 23}, {3341675008U, 23}, - {0, 8}, + {0U, 8}, {3326316168U, 30}, {3326316108U, 30}, {3326316060U, 30}, -- 2.5.5