more bpf header updates
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
parent
8a38e44fad
commit
b68581d43e
|
|
@ -513,6 +513,11 @@ union bpf_attr {
|
||||||
* 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 overflowuid if failed.
|
* Return: uid of the socket owner on success or overflowuid if failed.
|
||||||
|
*
|
||||||
|
* u32 bpf_set_hash(skb, hash)
|
||||||
|
* Set full skb->hash.
|
||||||
|
* @skb: pointer to skb
|
||||||
|
* @hash: hash to set
|
||||||
*/
|
*/
|
||||||
#define __BPF_FUNC_MAPPER(FN) \
|
#define __BPF_FUNC_MAPPER(FN) \
|
||||||
FN(unspec), \
|
FN(unspec), \
|
||||||
|
|
@ -562,7 +567,8 @@ union bpf_attr {
|
||||||
FN(xdp_adjust_head), \
|
FN(xdp_adjust_head), \
|
||||||
FN(probe_read_str), \
|
FN(probe_read_str), \
|
||||||
FN(get_socket_cookie), \
|
FN(get_socket_cookie), \
|
||||||
FN(get_socket_uid),
|
FN(get_socket_uid), \
|
||||||
|
FN(set_hash),
|
||||||
|
|
||||||
/* integer value in 'imm' field of BPF_CALL instruction selects which helper
|
/* integer value in 'imm' field of BPF_CALL instruction selects which helper
|
||||||
* function eBPF program intends to call
|
* function eBPF program intends to call
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue