net/socket: Break down __sys_getsockopt
authorBreno Leitao <leitao@debian.org>
Mon, 16 Oct 2023 13:47:42 +0000 (06:47 -0700)
committerJens Axboe <axboe@kernel.dk>
Thu, 19 Oct 2023 22:41:37 +0000 (16:41 -0600)
commit0b05b0cd78c92371fdde6333d006f39eaf9e0860
tree47f27adbfa440cc83bdc820a382ff514247966cd
parent1406245c29454ff84919736be83e14cdaba7fec1
net/socket: Break down __sys_getsockopt

Split __sys_getsockopt() into two functions by removing the core
logic into a sub-function (do_sock_getsockopt()). This will avoid
code duplication when doing the same operation in other callers, for
instance.

do_sock_getsockopt() will be called by io_uring getsockopt() command
operation in the following patch.

The same was done for the setsockopt pair.

Suggested-by: Martin KaFai Lau <martin.lau@linux.dev>
Signed-off-by: Breno Leitao <leitao@debian.org>
Acked-by: Jakub Kicinski <kuba@kernel.org>
Acked-by: Martin KaFai Lau <martin.lau@kernel.org>
Link: https://lore.kernel.org/r/20231016134750.1381153-5-leitao@debian.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
include/linux/bpf-cgroup.h
include/net/sock.h
net/core/sock.c
net/socket.c