From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nikita Kozlov Subject: [PATCH 1/4] test: make all lpm routes be of unsigned type Date: Tue, 14 Jun 2016 15:03:27 +0200 Message-ID: <1465909410-4668-2-git-send-email-nikita@elyzion.net> References: <1462539092-24389-1-git-send-email-bruce.richardson@intel.com> <1465909410-4668-1-git-send-email-nikita@elyzion.net> Cc: Bruce Richardson To: dev@dpdk.org Return-path: Received: from mail.elyzion.net (freeside.gandi.net [217.70.181.31]) by dpdk.org (Postfix) with ESMTP id DDE5B8E82 for ; Tue, 14 Jun 2016 15:03:34 +0200 (CEST) In-Reply-To: <1465909410-4668-1-git-send-email-nikita@elyzion.net> 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 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: Nikita Kozlov 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.8.1