From 12d7685905026b090868056c4d19ee866b6dbe5d Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 1 May 2013 16:54:18 -0700 Subject: [PATCH] dpif-linux: Use MAX_PORTS instead of hard-coded 65535. MAX_PORTS is currently USHRT_MAX (also 65535). I think that's a coincidence; I don't remember MAX_PORTS being mentioned when the new dpif_channel code was written. Signed-off-by: Ben Pfaff --- lib/dpif-linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dpif-linux.c b/lib/dpif-linux.c index b863a2e21..39acc9aa8 100644 --- a/lib/dpif-linux.c +++ b/lib/dpif-linux.c @@ -312,7 +312,7 @@ add_channel(struct dpif_linux *dpif, uint32_t port_no, struct nl_sock *sock) int new_size = port_no + 1; int i; - if (new_size > 65535) { + if (new_size > MAX_PORTS) { VLOG_WARN_RL(&error_rl, "%s: datapath port %"PRIu32" too big", dpif_name(&dpif->dpif), port_no); return EFBIG; -- 2.47.0