diff options
| author | David S. Miller <davem@davemloft.net> | 2016-09-23 08:40:36 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2016-09-23 08:40:36 -0400 |
| commit | 7a048d5adc03e0a7af86e1c6065a99fa071d9c8d (patch) | |
| tree | a75242c2019c0a87017ca6babca3953c0b206e38 /include | |
| parent | c14fec3969b0e8af5c38ad9f14198d6d7cca54d0 (diff) | |
| parent | 7a4b28c6cc9ffac50f791b99cc7e46106436e5d8 (diff) | |
Merge branch 'bpf-helper-improvements'
Daniel Borkmann says:
====================
Few minor BPF helper improvements
Just a few minor improvements around BPF helpers, first one is a
fix but given this late stage and that it's not really a critical
one, I think net-next is just fine. For details please see the
individual patches.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
| -rw-r--r-- | include/uapi/linux/bpf.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/uapi/linux/bpf.h b/include/uapi/linux/bpf.h index e07432b9f8b8..f09c70b97eca 100644 --- a/include/uapi/linux/bpf.h +++ b/include/uapi/linux/bpf.h @@ -419,6 +419,13 @@ enum bpf_func_id { */ BPF_FUNC_csum_update, + /** + * bpf_set_hash_invalid(skb) + * Invalidate current skb>hash. + * @skb: pointer to skb + */ + BPF_FUNC_set_hash_invalid, + __BPF_FUNC_MAX_ID, }; |
