Commit 71f150f4 authored by YueHaibing's avatar YueHaibing Committed by Alexei Starovoitov

bpf: Use PTR_ERR_OR_ZERO in bpf_fd_sk_storage_update_elem()

Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Acked-by: default avatarMartin KaFai Lau <kafai@fb.com>
Signed-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
parent a734d1f4
...@@ -708,7 +708,7 @@ static int bpf_fd_sk_storage_update_elem(struct bpf_map *map, void *key, ...@@ -708,7 +708,7 @@ static int bpf_fd_sk_storage_update_elem(struct bpf_map *map, void *key,
if (sock) { if (sock) {
sdata = sk_storage_update(sock->sk, map, value, map_flags); sdata = sk_storage_update(sock->sk, map, value, map_flags);
sockfd_put(sock); sockfd_put(sock);
return IS_ERR(sdata) ? PTR_ERR(sdata) : 0; return PTR_ERR_OR_ZERO(sdata);
} }
return err; return err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment