Skip to content

Commit

Permalink
ovs-dpctl: Allow requesting the port number from "add-if" command.
Browse files Browse the repository at this point in the history
The datapath port number influences the OpenFlow port number in
ovs-vswitchd.  The new "port_no" option for the "add-if" command allows
the user to request a specific datapath port number.

Feature #12642

Signed-off-by: Justin Pettit <[email protected]>
  • Loading branch information
Justin Pettit committed Jul 31, 2012
1 parent 232dfa4 commit 4b3b8d8
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ post-v1.8.0
- OpenFlow:
- Allow bitwise masking for SHA and THA fields in ARP, SLL and TLL
fields in IPv6 neighbor discovery messages, and IPv6 flow label.
- ovs-dpctl
- Support requesting the port number with the "port_no" option in
the "add-if" command.


v1.8.0 - xx xxx xxxx
Expand Down
9 changes: 6 additions & 3 deletions utilities/ovs-dpctl.8.in
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ The following options are currently supported:
.RS
.IP "\fBtype=\fItype\fR"
Specifies the type of port to add. The default type is \fBsystem\fR.
.IP "\fBport_no=\fIport\fR"
Requests a specific port number within the datapath. If this option is
not specified then one will be automatically assigned.
.IP "\fIkey\fB=\fIvalue\fR"
Adds an arbitrary key-value option to the port's configuration.
.RE
Expand All @@ -78,9 +81,9 @@ Reconfigures each \fIport\fR in \fIdp\fR as specified. An
\fIoption\fR of the form \fIkey\fB=\fIvalue\fR adds the specified
key-value option to the port or overrides an existing key's value. An
\fIoption\fR of the form \fIkey\fB=\fR, that is, without a value,
deletes the key-value named \fIkey\fR. The type of a port cannot be
changed, so \fBtype=\fItype\fR is only allowed if \fItype\fR is the
port's existing type.
deletes the key-value named \fIkey\fR. The type and port number of a
port cannot be changed, so \fBtype\fR and \fBport_no\fR are only allowed if
they match the existing configuration.
.TP
\fBdel\-if \fIdp netdev\fR...
Removes each \fInetdev\fR from the list of network devices datapath
Expand Down
14 changes: 13 additions & 1 deletion utilities/ovs-dpctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ dpctl_add_if(int argc OVS_UNUSED, char *argv[])
char *save_ptr = NULL;
struct netdev *netdev = NULL;
struct smap args;
uint16_t port_no = UINT16_MAX;
char *option;
int error;

Expand All @@ -273,6 +274,8 @@ dpctl_add_if(int argc OVS_UNUSED, char *argv[])

if (!strcmp(key, "type")) {
type = value;
} else if (!strcmp(key, "port_no")) {
port_no = atoi(value);
} else if (!smap_add_once(&args, key, value)) {
ovs_error(0, "duplicate \"%s\" option", key);
}
Expand All @@ -290,7 +293,7 @@ dpctl_add_if(int argc OVS_UNUSED, char *argv[])
goto next;
}

error = dpif_port_add(dpif, netdev, NULL);
error = dpif_port_add(dpif, netdev, &port_no);
if (error) {
ovs_error(error, "adding %s to %s failed", name, argv[1]);
goto next;
Expand Down Expand Up @@ -325,6 +328,7 @@ dpctl_set_if(int argc, char *argv[])
char *type = NULL;
const char *name;
struct smap args;
uint32_t port_no;
char *option;
int error;

Expand All @@ -342,6 +346,7 @@ dpctl_set_if(int argc, char *argv[])
goto next;
}
type = xstrdup(dpif_port.type);
port_no = dpif_port.port_no;
dpif_port_destroy(&dpif_port);

/* Retrieve its existing configuration. */
Expand Down Expand Up @@ -375,6 +380,13 @@ dpctl_set_if(int argc, char *argv[])
name, type, value);
failure = true;
}
} else if (!strcmp(key, "port_no")) {
if (port_no != atoi(value)) {
ovs_error(0, "%s: can't change port number from "
"%"PRIu32" to %d",
name, port_no, atoi(value));
failure = true;
}
} else if (value[0] == '\0') {
smap_remove(&args, key);
} else {
Expand Down

0 comments on commit 4b3b8d8

Please sign in to comment.