From: Pravin B Shelar Date: Tue, 18 Jun 2013 00:50:23 +0000 (-0700) Subject: openvswitch: Expand action buffer size. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ffe3f4321745e743dd179ec2b12180c01ba0d3aa;p=linux.git openvswitch: Expand action buffer size. MAX_ACTIONS_BUFSIZE limits action list size, set tunnel action needs extra space on action list, for now increase max actions list limit. Signed-off-by: Pravin B Shelar Acked-by: Jesse Gross Signed-off-by: David S. Miller --- diff --git a/net/openvswitch/flow.h b/net/openvswitch/flow.h index aec5e43f690b0..bfe80b9607590 100644 --- a/net/openvswitch/flow.h +++ b/net/openvswitch/flow.h @@ -159,7 +159,7 @@ int ovs_flow_from_nlattrs(struct sw_flow_key *swkey, int *key_lenp, int ovs_flow_metadata_from_nlattrs(struct sw_flow *flow, const struct nlattr *attr); -#define MAX_ACTIONS_BUFSIZE (16 * 1024) +#define MAX_ACTIONS_BUFSIZE (32 * 1024) #define TBL_MIN_BUCKETS 1024 struct flow_table {