Re: [ovs-dev] [PATCH] dpif-linux: Use MAX_PORTS instead of hard-coded 65535.

2013-05-02 Thread Ben Pfaff
Thanks, applied. On Wed, May 01, 2013 at 11:42:49PM -0700, Justin Pettit wrote: > Looks good. > > --Justin > > > On May 1, 2013, at 5:13 PM, Ben Pfaff wrote: > > > MAX_PORTS is currently USHRT_MAX (also 65535). I think that's a > > coincidence; I don't remember MAX_PORTS being mentioned when

Re: [ovs-dev] [PATCH] dpif-linux: Use MAX_PORTS instead of hard-coded 65535.

2013-05-01 Thread Justin Pettit
Looks good. --Justin On May 1, 2013, at 5:13 PM, Ben Pfaff wrote: > 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 |

[ovs-dev] [PATCH] dpif-linux: Use MAX_PORTS instead of hard-coded 65535.

2013-05-01 Thread Ben Pfaff
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 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/dpif-li