From 33b5304b913bb8018ea39f5ee5e00e60e65fe0da Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 30 Dec 2010 08:57:01 -0800 Subject: [PATCH] ofproto: Increase max recursion level from 8 to 16. Requested-by: Pankaj Thakkar --- ofproto/ofproto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ofproto/ofproto.c b/ofproto/ofproto.c index e4057c25..6ebda01d 100644 --- a/ofproto/ofproto.c +++ b/ofproto/ofproto.c @@ -2623,7 +2623,7 @@ handle_set_config(struct ofconn *ofconn, const struct ofp_switch_config *osc) /* Maximum depth of flow table recursion (due to NXAST_RESUBMIT actions) in a * flow translation. */ -#define MAX_RESUBMIT_RECURSION 8 +#define MAX_RESUBMIT_RECURSION 16 static void do_xlate_actions(const union ofp_action *in, size_t n_in, struct action_xlate_ctx *ctx); -- 2.30.2