vconn: Fix parameters for vconn_open(), vconn_open_block(), pvconn_open().
authorBen Pfaff <blp@nicira.com>
Thu, 3 Jan 2013 01:10:43 +0000 (17:10 -0800)
committerBen Pfaff <blp@nicira.com>
Fri, 4 Jan 2013 17:05:36 +0000 (09:05 -0800)
commit82c8c53c5b0dbbd6c56be6febf3a24b374ae0303
treec1b016383713397b3b6e60b85cb3f03c2cf643c8
parenta01b5c516d293765cfe564f5d340a6ccca9e0a29
vconn: Fix parameters for vconn_open(), vconn_open_block(), pvconn_open().

The customary parameter order in Open vSwitch is to put input parameters
before output parameters, but vconn_open() and pvconn_open() had the 'dscp'
input parameter at the end, which bugged me a bit.  Also,
vconn_open_block() didn't take a 'dscp' parameter at all even though it's
otherwise a wrapper around vconn_open().  This commit fixes all that up.

Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Ethan Jackson <ethan@nicira.com>
lib/rconn.c
lib/vconn.c
lib/vconn.h
ofproto/connmgr.c
tests/test-vconn.c
utilities/ovs-controller.c
utilities/ovs-ofctl.c