devlink: use nla_put_failure goto label instead of out

Be aligned with the rest of the code and use label named nla_put_failure.

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:35 +01:00 коммит произвёл David S. Miller
Родитель 21e3d2dd4a
Коммит 1a6aa36b6f
1 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -1408,29 +1408,29 @@ static int devlink_nl_eswitch_fill(struct sk_buff *msg, struct devlink *devlink,
err = devlink_nl_put_handle(msg, devlink);
if (err)
goto out;
goto nla_put_failure;
err = ops->eswitch_mode_get(devlink, &mode);
if (err)
goto out;
goto nla_put_failure;
err = nla_put_u16(msg, DEVLINK_ATTR_ESWITCH_MODE, mode);
if (err)
goto out;
goto nla_put_failure;
if (ops->eswitch_inline_mode_get) {
err = ops->eswitch_inline_mode_get(devlink, &inline_mode);
if (err)
goto out;
goto nla_put_failure;
err = nla_put_u8(msg, DEVLINK_ATTR_ESWITCH_INLINE_MODE,
inline_mode);
if (err)
goto out;
goto nla_put_failure;
}
genlmsg_end(msg, hdr);
return 0;
out:
nla_put_failure:
genlmsg_cancel(msg, hdr);
return err;
}