From 642a5c059f079e05892b00e004b039fab854c0f0 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 19 Oct 2011 13:18:30 -0700 Subject: [PATCH] ofproto-dpif: Increase recursion limit. Requested-by: Pankaj Thakkar Bug #7874. --- ofproto/ofproto-dpif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ofproto/ofproto-dpif.c b/ofproto/ofproto-dpif.c index 211577b6f..0eeda7e55 100644 --- a/ofproto/ofproto-dpif.c +++ b/ofproto/ofproto-dpif.c @@ -63,7 +63,7 @@ COVERAGE_DEFINE(facet_unexpected); /* Maximum depth of flow table recursion (due to resubmit actions) in a * flow translation. */ -#define MAX_RESUBMIT_RECURSION 16 +#define MAX_RESUBMIT_RECURSION 32 /* Number of implemented OpenFlow tables. */ enum { N_TABLES = 255 }; -- 2.43.0