devlink: use direct return of genlmsg_reply

This can remove redundant check

Signed-off-by: Li RongQing <lirongqing@baidu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Li RongQing 2019-02-11 19:09:07 +08:00 committed by David S. Miller
parent 1d9b041e9c
commit fde55ea74c

View file

@ -4356,11 +4356,8 @@ static int devlink_fmsg_snd(struct devlink_fmsg *fmsg,
err = -EMSGSIZE;
goto nla_put_failure;
}
err = genlmsg_reply(skb, info);
if (err)
return err;
return 0;
return genlmsg_reply(skb, info);
nla_put_failure:
nlmsg_free(skb);