diff options
author | Danielle Ratson <danieller@mellanox.com> | 2020-07-09 16:18:14 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-07-09 13:15:29 -0700 |
commit | 10a429bab4462581bbda3fd7f41d4ec0ddc5e682 (patch) | |
tree | 3129d8ca6fa50d3f5c8240677775620fa51752ab /include/net/devlink.h | |
parent | faea30ed717d78e890f3fc0d96ceb6aba2baa4c4 (diff) | |
download | linux-10a429bab4462581bbda3fd7f41d4ec0ddc5e682.tar.gz linux-10a429bab4462581bbda3fd7f41d4ec0ddc5e682.tar.bz2 linux-10a429bab4462581bbda3fd7f41d4ec0ddc5e682.zip |
devlink: Move set attribute of devlink_port_attrs to devlink_port
The struct devlink_port_attrs holds the attributes of devlink_port.
The 'set' field is not devlink_port's attribute as opposed to most of the
others.
Move 'set' to be devlink_port's field called 'attrs_set'.
Signed-off-by: Danielle Ratson <danieller@mellanox.com>
Reviewed-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/devlink.h')
-rw-r--r-- | include/net/devlink.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/devlink.h b/include/net/devlink.h index 428f55f8197c..28f8d92c5741 100644 --- a/include/net/devlink.h +++ b/include/net/devlink.h @@ -65,8 +65,7 @@ struct devlink_port_pci_vf_attrs { }; struct devlink_port_attrs { - u8 set:1, - split:1, + u8 split:1, switch_port:1; enum devlink_port_flavour flavour; struct netdev_phys_item_id switch_id; @@ -90,6 +89,7 @@ struct devlink_port { enum devlink_port_type desired_type; void *type_dev; struct devlink_port_attrs attrs; + u8 attrs_set:1; struct delayed_work type_warn_dw; }; |