From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 309A85A1F for ; Fri, 6 May 2016 14:51:45 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP; 06 May 2016 05:51:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,587,1455004800"; d="scan'208";a="947580459" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga001.jf.intel.com with ESMTP; 06 May 2016 05:51:44 -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 u46CpheA016232; Fri, 6 May 2016 13:51:43 +0100 Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id u46Cph3H024442; Fri, 6 May 2016 13:51:43 +0100 Received: (from bricha3@localhost) by sivswdev01.ir.intel.com with id u46CphQS024438; Fri, 6 May 2016 13:51:43 +0100 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Date: Fri, 6 May 2016 13:51:30 +0100 Message-Id: <1462539092-24389-3-git-send-email-bruce.richardson@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1462539092-24389-1-git-send-email-bruce.richardson@intel.com> References: <1462539092-24389-1-git-send-email-bruce.richardson@intel.com> Subject: [dpdk-dev] [RFC PATCH 2/4] 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: Fri, 06 May 2016 12:51:45 -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