bpf: Fix inaccurate helper function description
The description inside uapi/linux/bpf.h about bpf_get_socket_uid helper function is no longer valid. It returns overflowuid rather than 0 when failed. Signed-off-by: Chenbo Feng <fengc@google.com> Acked-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Alexei Starovoitov <ast@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Родитель
d68be71ea1
Коммит
5d4e344328
|
@ -481,8 +481,7 @@ union bpf_attr {
|
||||||
* u32 bpf_get_socket_uid(skb)
|
* u32 bpf_get_socket_uid(skb)
|
||||||
* Get the owner uid of the socket stored inside sk_buff.
|
* Get the owner uid of the socket stored inside sk_buff.
|
||||||
* @skb: pointer to skb
|
* @skb: pointer to skb
|
||||||
* Return: uid of the socket owner on success or 0 if the socket pointer
|
* Return: uid of the socket owner on success or overflowuid if failed.
|
||||||
* inside sk_buff is NULL
|
|
||||||
*/
|
*/
|
||||||
#define __BPF_FUNC_MAPPER(FN) \
|
#define __BPF_FUNC_MAPPER(FN) \
|
||||||
FN(unspec), \
|
FN(unspec), \
|
||||||
|
|
Загрузка…
Ссылка в новой задаче