diff options
author | Daniel Borkmann <daniel@iogearbox.net> | 2015-04-03 20:52:24 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-04-03 14:59:15 -0400 |
commit | bcad57182425426dd4aa14deb27f97acb329f3cd (patch) | |
tree | d534fef01490769c56a9246f9cf07dd681f0ecbe /include | |
parent | 2e7056c433216f406b90a003aa0ba42e19d3bdcf (diff) | |
download | linux-bcad57182425426dd4aa14deb27f97acb329f3cd.tar.bz2 |
ebpf: add skb->priority to offset map for usage in {cls, act}_bpf
This adds the ability to read out the skb->priority from an eBPF
program, so that it can be taken into account from a tc filter
or action for the use-case where the priority is not being used
to directly override the filter classification in a qdisc, but
to tag traffic otherwise for the classifier; the priority can be
assigned from various places incl. user space, in future we may
also mangle it from an eBPF program.
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Cc: Alexei Starovoitov <ast@plumgrid.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/linux/bpf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h index 74aab6e0d964..0db8580f3cca 100644 --- a/include/uapi/linux/bpf.h +++ b/include/uapi/linux/bpf.h @@ -184,6 +184,7 @@ struct __sk_buff { __u32 vlan_present; __u32 vlan_tci; __u32 vlan_proto; + __u32 priority; }; #endif /* _UAPI__LINUX_BPF_H__ */ |