From: A K M Fazla Mehrab Date: Mon, 26 Aug 2024 18:26:52 +0000 (+0000) Subject: net/handshake: use sockfd_put() helper X-Git-Tag: v6.12-rc1~232^2~161 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85d4cf56e95ae0bb381587f229420a0eb6ab1d0a;p=thirdparty%2Flinux.git net/handshake: use sockfd_put() helper Replace fput() with sockfd_put() in handshake_nl_done_doit(). Signed-off-by: A K M Fazla Mehrab Reviewed-by: Chuck Lever Link: https://patch.msgid.link/20240826182652.2449359-1-a.mehrab@bytedance.com Signed-off-by: Jakub Kicinski --- diff --git a/net/handshake/netlink.c b/net/handshake/netlink.c index 89637e7328666..7e46d130dce2c 100644 --- a/net/handshake/netlink.c +++ b/net/handshake/netlink.c @@ -153,7 +153,7 @@ int handshake_nl_done_doit(struct sk_buff *skb, struct genl_info *info) if (!req) { err = -EBUSY; trace_handshake_cmd_done_err(net, req, sock->sk, err); - fput(sock->file); + sockfd_put(sock); return err; } @@ -164,7 +164,7 @@ int handshake_nl_done_doit(struct sk_buff *skb, struct genl_info *info) status = nla_get_u32(info->attrs[HANDSHAKE_A_DONE_STATUS]); handshake_complete(req, status, info); - fput(sock->file); + sockfd_put(sock); return 0; }