devlink: allow to fillup eswitch attrs even if mode_get op does not exist

Even when mode_get op is not present, other eswitch attrs need to be
filled-up.

Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jiri Pirko 2017-02-09 15:54:36 +01:00 committed by David S. Miller
parent 1a6aa36b6f
commit 4456f61cfd
1 changed files with 9 additions and 7 deletions

View File

@ -1410,12 +1410,14 @@ static int devlink_nl_eswitch_fill(struct sk_buff *msg, struct devlink *devlink,
if (err) if (err)
goto nla_put_failure; goto nla_put_failure;
if (ops->eswitch_mode_get) {
err = ops->eswitch_mode_get(devlink, &mode); err = ops->eswitch_mode_get(devlink, &mode);
if (err) if (err)
goto nla_put_failure; goto nla_put_failure;
err = nla_put_u16(msg, DEVLINK_ATTR_ESWITCH_MODE, mode); err = nla_put_u16(msg, DEVLINK_ATTR_ESWITCH_MODE, mode);
if (err) if (err)
goto nla_put_failure; goto nla_put_failure;
}
if (ops->eswitch_inline_mode_get) { if (ops->eswitch_inline_mode_get) {
err = ops->eswitch_inline_mode_get(devlink, &inline_mode); err = ops->eswitch_inline_mode_get(devlink, &inline_mode);
@ -1443,7 +1445,7 @@ static int devlink_nl_cmd_eswitch_get_doit(struct sk_buff *skb,
struct sk_buff *msg; struct sk_buff *msg;
int err; int err;
if (!ops || !ops->eswitch_mode_get) if (!ops)
return -EOPNOTSUPP; return -EOPNOTSUPP;
msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);