From: Ben Pfaff Date: Wed, 19 Oct 2011 20:18:30 +0000 (-0700) Subject: ofproto-dpif: Increase recursion limit. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=642a5c059f079e05892b00e004b039fab854c0f0;p=openvswitch ofproto-dpif: Increase recursion limit. Requested-by: Pankaj Thakkar Bug #7874. --- diff --git a/ofproto/ofproto-dpif.c b/ofproto/ofproto-dpif.c index 211577b6..0eeda7e5 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 };