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:
committed by
David S. Miller
parent
1d9b041e9c
commit
fde55ea74c
@@ -4356,11 +4356,8 @@ static int devlink_fmsg_snd(struct devlink_fmsg *fmsg,
|
|||||||
err = -EMSGSIZE;
|
err = -EMSGSIZE;
|
||||||
goto nla_put_failure;
|
goto nla_put_failure;
|
||||||
}
|
}
|
||||||
err = genlmsg_reply(skb, info);
|
|
||||||
if (err)
|
|
||||||
return err;
|
|
||||||
|
|
||||||
return 0;
|
return genlmsg_reply(skb, info);
|
||||||
|
|
||||||
nla_put_failure:
|
nla_put_failure:
|
||||||
nlmsg_free(skb);
|
nlmsg_free(skb);
|
||||||
|
Reference in New Issue
Block a user