Hi, On 2022-07-05 14:44:07 +0100, Quentin Monnet wrote: > > diff --git a/tools/include/tools/dis-asm-compat.h b/tools/include/tools/dis-asm-compat.h > > new file mode 100644 > > index 000000000000..d1d003ee3e2f > > --- /dev/null > > +++ b/tools/include/tools/dis-asm-compat.h > > @@ -0,0 +1,53 @@ > > +/* SPDX-License-Identifier: GPL-2.0 */ > > Any chance you could contribute this wrapper as dual-licenced > (GPL-2.0-only OR BSD-2-Clause), for better compatibility with the rest > of bpftool's code? Happy to do that from my end - however, right now it includes linux/compiler.h, which is GPL-2.0. I don't know what the policy around that is - is it just a statement about the licence of the header itself, or does it effectively include its dependencies? FWIW, linux/compiler.h is also included from bpftool. If preferrable, I can replace the linux/compiler.h include by just using __attribute__((__unused__)) directly or by using a (void) cast to avoid the unused-parameter pedantry. Greetings, Andres Freund