mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 16:54:20 +08:00
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:
parent
1d9b041e9c
commit
fde55ea74c
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user