Re: linux-next: build failure after merge of the net tree
From: Ingo Molnar <mingo@kernel.org>
Date: 2017-02-14 06:35:21
Also in:
linux-next, lkml
From: Ingo Molnar <mingo@kernel.org>
Date: 2017-02-14 06:35:21
Also in:
linux-next, lkml
* Stephen Rothwell [off-list ref] wrote:
--- a/tools/include/uapi/linux/bpf.h +++ b/tools/include/uapi/linux/bpf.h@@ -116,6 +116,12 @@ enum bpf_attach_type { #define MAX_BPF_ATTACH_TYPE __MAX_BPF_ATTACH_TYPE +/* If BPF_F_ALLOW_OVERRIDE flag is used in BPF_PROG_ATTACH command + * to the given target_fd cgroup the descendent cgroup will be able to + * override effective bpf program that was inherited from this cgroup + */ +#define BPF_F_ALLOW_OVERRIDE (1U << 0) +
BTW., guys, for heaven's sake, please use the standard (multi-line) comment style:
/*
* Comment .....
* ...... goes here.
*/
specified in Documentation/CodingStyle...
It's not that hard to create visually balanced patterns.
Thanks,
Ingo