diff options
author | Leon Romanovsky <leonro@mellanox.com> | 2019-06-12 15:20:11 +0300 |
---|---|---|
committer | Leon Romanovsky <leonro@mellanox.com> | 2019-06-16 15:40:03 +0300 |
commit | 98fdbea550378e0153092bce21261df86a8ccc57 (patch) | |
tree | e9ba26de732702957a6ed96bbf17720fa9928d11 /net | |
parent | 1f8a7bee27e63d7c5287719049941e285e54d370 (diff) | |
download | linux-98fdbea550378e0153092bce21261df86a8ccc57.tar.gz linux-98fdbea550378e0153092bce21261df86a8ccc57.tar.bz2 linux-98fdbea550378e0153092bce21261df86a8ccc57.zip |
net/mlx5: Declare more strictly devlink encap mode
Devlink has UAPI declaration for encap mode, so there is no
need to be loose on the data get/set by drivers.
Update call sites to use enum devlink_eswitch_encap_mode
instead of plain u8.
Suggested-by: Parav Pandit <parav@mellanox.com>
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Acked-by: Jiri Pirko <jiri@mellanox.com>
Reviewed-by: Parav Pandit <parav@mellanox.com>
Reviewed-by: Petr Vorel <pvorel@suse.cz>
Diffstat (limited to 'net')
-rw-r--r-- | net/core/devlink.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/core/devlink.c b/net/core/devlink.c index d43bc52b8840..47ae69363b07 100644 --- a/net/core/devlink.c +++ b/net/core/devlink.c @@ -1552,7 +1552,8 @@ static int devlink_nl_eswitch_fill(struct sk_buff *msg, struct devlink *devlink, u32 seq, int flags) { const struct devlink_ops *ops = devlink->ops; - u8 inline_mode, encap_mode; + enum devlink_eswitch_encap_mode encap_mode; + u8 inline_mode; void *hdr; int err = 0; u16 mode; @@ -1628,7 +1629,8 @@ static int devlink_nl_cmd_eswitch_set_doit(struct sk_buff *skb, { struct devlink *devlink = info->user_ptr[0]; const struct devlink_ops *ops = devlink->ops; - u8 inline_mode, encap_mode; + enum devlink_eswitch_encap_mode encap_mode; + u8 inline_mode; int err = 0; u16 mode; |