]> git.proxmox.com Git - mirror_iproute2.git/commitdiff
devlink: Introduce devlink port flavour virtual
authorParav Pandit <parav@mellanox.com>
Wed, 4 Mar 2020 04:06:26 +0000 (22:06 -0600)
committerDavid Ahern <dsahern@gmail.com>
Wed, 4 Mar 2020 19:48:11 +0000 (19:48 +0000)
Currently PCI PF and VF devlink devices register their ports as
physical port in non-representors mode.

Introduce a new port flavour as virtual so that virtual devices can
register 'virtual' flavour to make it more clear to users.

An example of one PCI PF and 2 PCI virtual functions, each having
one devlink port.

$ devlink port show
pci/0000:06:00.0/1: type eth netdev ens2f0 flavour physical port 0
pci/0000:06:00.2/1: type eth netdev ens2f2 flavour virtual port 0
pci/0000:06:00.3/1: type eth netdev ens2f3 flavour virtual port 0

Reviewed-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: Parav Pandit <parav@mellanox.com>
Signed-off-by: David Ahern <dsahern@gmail.com>
devlink/devlink.c

index eef27c27592196d6d8500e91bc1fd6a3f45655f2..67e6e64181f96c9ccac986cff6bad3a3643173f2 100644 (file)
@@ -3150,6 +3150,8 @@ static const char *port_flavour_name(uint16_t flavour)
                return "pcipf";
        case DEVLINK_PORT_FLAVOUR_PCI_VF:
                return "pcivf";
+       case DEVLINK_PORT_FLAVOUR_VIRTUAL:
+               return "virtual";
        default:
                return "<unknown flavour>";
        }