]> git.baikalelectronics.ru Git - kernel.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)
commita5c7f30f0a86de70bf07d8967bf8e7719f73e81d
tree165b53c9af2e9f08c52736f704d3c94fdaec8041
parent9e097b1388945e2785736042b958000f3385a94b
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