From: Justin Pettit Date: Tue, 30 Dec 2008 18:55:33 +0000 (-0800) Subject: Increase max datapaths to 256 (Bug #561). X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbb981a91d3a6e8556c77a54d177118831c6f2f4;p=openvswitch Increase max datapaths to 256 (Bug #561). Increase the maximum number of datapaths from 32 to 256. This ought to be enough for anyone. --- diff --git a/include/openflow/openflow-netlink.h b/include/openflow/openflow-netlink.h index 3193c691..d915ea73 100644 --- a/include/openflow/openflow-netlink.h +++ b/include/openflow/openflow-netlink.h @@ -64,6 +64,6 @@ enum dp_genl_command { }; /* Maximum number of datapaths. */ -#define DP_MAX 32 +#define DP_MAX 256 #endif /* openflow/openflow-netlink.h */