Re: linux-next: build failure after merge of the net tree

From: Ingo Molnar
Date: Tue Feb 14 2017 - 01:35:24 EST



* Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> 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