]> asedeno.scripts.mit.edu Git - linux.git/commit
openvswitch: reliable interface indentification in port dumps
authorJiri Benc <jbenc@redhat.com>
Thu, 2 Nov 2017 19:04:37 +0000 (17:04 -0200)
committerDavid S. Miller <davem@davemloft.net>
Sun, 5 Nov 2017 12:49:17 +0000 (21:49 +0900)
commit9354d452034273a50a4fd703bea31e5d6b1fc20b
tree165b53c9af2e9f08c52736f704d3c94fdaec8041
parent7cbebc8a142238da3c2966f87b81ace491c8f089
openvswitch: reliable interface indentification in port dumps

This patch allows reliable identification of netdevice interfaces connected
to openvswitch bridges. In particular, user space queries the netdev
interfaces belonging to the ports for statistics, up/down state, etc.
Datapath dump needs to provide enough information for the user space to be
able to do that.

Currently, only interface names are returned. This is not sufficient, as
openvswitch allows its ports to be in different name spaces and the
interface name is valid only in its name space. What is needed and generally
used in other netlink APIs, is the pair ifindex+netnsid.

The solution is addition of the ifindex+netnsid pair (or only ifindex if in
the same name space) to vport get/dump operation.

On request side, ideally the ifindex+netnsid pair could be used to
get/set/del the corresponding vport. This is not implemented by this patch
and can be added later if needed.

Signed-off-by: Jiri Benc <jbenc@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/uapi/linux/openvswitch.h
net/openvswitch/datapath.c
net/openvswitch/datapath.h
net/openvswitch/dp_notify.c