diff options
author | Jinjie Ruan <ruanjinjie@huawei.com> | 2024-08-30 10:07:56 +0800 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2024-08-30 08:57:47 -0700 |
commit | 65ef66d918039c9e012437f2ec57f2bef76faf15 (patch) | |
tree | cce63d703726bc6ee70f38e8a5f70ad4b2068d33 | |
parent | 1dd7622ef5085e0fd332d1293530b350499c374d (diff) |
bpf: Use sockfd_put() helper
Replace fput() with sockfd_put() in bpf_fd_reuseport_array_update_elem().
Signed-off-by: Jinjie Ruan <ruanjinjie@huawei.com>
Acked-by: Stanislav Fomichev <sdf@fomichev.me>
Link: https://lore.kernel.org/r/20240830020756.607877-1-ruanjinjie@huawei.com
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
-rw-r--r-- | kernel/bpf/reuseport_array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/bpf/reuseport_array.c b/kernel/bpf/reuseport_array.c index 4b4f9670f1a9..49b8e5a0c6b4 100644 --- a/kernel/bpf/reuseport_array.c +++ b/kernel/bpf/reuseport_array.c @@ -308,7 +308,7 @@ put_file_unlock: spin_unlock_bh(&reuseport_lock); put_file: - fput(socket->file); + sockfd_put(socket); return err; } |