diff mbox series

add CONFIG_DEBUG_INFO_BTF check to bpftool feature command

Message ID 20210219222135.62118-1-grantseltzer@gmail.com (mailing list archive)
State Superseded
Delegated to: BPF
Headers show
Series add CONFIG_DEBUG_INFO_BTF check to bpftool feature command | expand

Checks

Context Check Description
netdev/tree_selection success Not a local patch

Commit Message

Grant Seltzer Richman Feb. 19, 2021, 10:21 p.m. UTC
Signed-off-by: grantseltzer <grantseltzer@gmail.com>
---
 tools/bpf/bpftool/feature.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Martin KaFai Lau Feb. 19, 2021, 10:36 p.m. UTC | #1
There is no description.  Please provide a commit message.

On Fri, Feb 19, 2021 at 10:21:35PM +0000, grantseltzer wrote:
> Signed-off-by: grantseltzer <grantseltzer@gmail.com>
> ---
>  tools/bpf/bpftool/feature.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/tools/bpf/bpftool/feature.c b/tools/bpf/bpftool/feature.c
> index 359960a8f..34343e7fa 100644
> --- a/tools/bpf/bpftool/feature.c
> +++ b/tools/bpf/bpftool/feature.c
> @@ -336,6 +336,8 @@ static void probe_kernel_image_config(const char *define_prefix)
>  		{ "CONFIG_BPF_JIT", },
>  		/* Avoid compiling eBPF interpreter (use JIT only) */
>  		{ "CONFIG_BPF_JIT_ALWAYS_ON", },
> +		/* Enable using BTF debug information */
> +		{ "CONFIG_DEBUG_INFO_BTF", },
>  
>  		/* cgroups */
>  		{ "CONFIG_CGROUPS", },
> -- 
> 2.29.2
>
Grant Seltzer Richman Feb. 19, 2021, 10:43 p.m. UTC | #2
This adds the CONFIG_DEBUG_INFO_BTF kernel compile option to output of
the bpftool feature command. This is relevant for developers that want
to use libbpf to account for data structure definition differences
between kernels.

Signed-off-by: grantseltzer <grantseltzer@gmail.com>
---
 tools/bpf/bpftool/feature.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/bpf/bpftool/feature.c b/tools/bpf/bpftool/feature.c
index 359960a8f..34343e7fa 100644
--- a/tools/bpf/bpftool/feature.c
+++ b/tools/bpf/bpftool/feature.c
@@ -336,6 +336,8 @@ static void probe_kernel_image_config(const char
*define_prefix)
                { "CONFIG_BPF_JIT", },
                /* Avoid compiling eBPF interpreter (use JIT only) */
                { "CONFIG_BPF_JIT_ALWAYS_ON", },
+               /* Enable using BTF debug information */
+               { "CONFIG_DEBUG_INFO_BTF", },

                /* cgroups */
                { "CONFIG_CGROUPS", },
--
2.29.2

On Fri, Feb 19, 2021 at 5:36 PM Martin KaFai Lau <kafai@fb.com> wrote:
>
> There is no description.  Please provide a commit message.
>
> On Fri, Feb 19, 2021 at 10:21:35PM +0000, grantseltzer wrote:
> > Signed-off-by: grantseltzer <grantseltzer@gmail.com>
> > ---
> >  tools/bpf/bpftool/feature.c | 2 ++
> >  1 file changed, 2 insertions(+)
> >
> > diff --git a/tools/bpf/bpftool/feature.c b/tools/bpf/bpftool/feature.c
> > index 359960a8f..34343e7fa 100644
> > --- a/tools/bpf/bpftool/feature.c
> > +++ b/tools/bpf/bpftool/feature.c
> > @@ -336,6 +336,8 @@ static void probe_kernel_image_config(const char *define_prefix)
> >               { "CONFIG_BPF_JIT", },
> >               /* Avoid compiling eBPF interpreter (use JIT only) */
> >               { "CONFIG_BPF_JIT_ALWAYS_ON", },
> > +             /* Enable using BTF debug information */
> > +             { "CONFIG_DEBUG_INFO_BTF", },
> >
> >               /* cgroups */
> >               { "CONFIG_CGROUPS", },
> > --
> > 2.29.2
> >
Martin KaFai Lau Feb. 20, 2021, 10:50 p.m. UTC | #3
On Fri, Feb 19, 2021 at 05:43:00PM -0500, Grant Seltzer Richman wrote:
> This adds the CONFIG_DEBUG_INFO_BTF kernel compile option to output of
> the bpftool feature command. This is relevant for developers that want
> to use libbpf to account for data structure definition differences
> between kernels.
> 
> Signed-off-by: grantseltzer <grantseltzer@gmail.com>
> ---
>  tools/bpf/bpftool/feature.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/tools/bpf/bpftool/feature.c b/tools/bpf/bpftool/feature.c
> index 359960a8f..34343e7fa 100644
> --- a/tools/bpf/bpftool/feature.c
> +++ b/tools/bpf/bpftool/feature.c
> @@ -336,6 +336,8 @@ static void probe_kernel_image_config(const char
> *define_prefix)
>                 { "CONFIG_BPF_JIT", },
>                 /* Avoid compiling eBPF interpreter (use JIT only) */
>                 { "CONFIG_BPF_JIT_ALWAYS_ON", },
> +               /* Enable using BTF debug information */
> +               { "CONFIG_DEBUG_INFO_BTF", },
> 
>                 /* cgroups */
>                 { "CONFIG_CGROUPS", },
> --
> 2.29.2
> 
> On Fri, Feb 19, 2021 at 5:36 PM Martin KaFai Lau <kafai@fb.com> wrote:
> >
> > There is no description.  Please provide a commit message.
> >
> > On Fri, Feb 19, 2021 at 10:21:35PM +0000, grantseltzer wrote:
> > > Signed-off-by: grantseltzer <grantseltzer@gmail.com>
> > > ---
> > >  tools/bpf/bpftool/feature.c | 2 ++
> > >  1 file changed, 2 insertions(+)
> > >
> > > diff --git a/tools/bpf/bpftool/feature.c b/tools/bpf/bpftool/feature.c
> > > index 359960a8f..34343e7fa 100644
> > > --- a/tools/bpf/bpftool/feature.c
> > > +++ b/tools/bpf/bpftool/feature.c
> > > @@ -336,6 +336,8 @@ static void probe_kernel_image_config(const char *define_prefix)
> > >               { "CONFIG_BPF_JIT", },
> > >               /* Avoid compiling eBPF interpreter (use JIT only) */
> > >               { "CONFIG_BPF_JIT_ALWAYS_ON", },
> > > +             /* Enable using BTF debug information */
> > > +             { "CONFIG_DEBUG_INFO_BTF", },
> > >
> > >               /* cgroups */
> > >               { "CONFIG_CGROUPS", },
I don't think this old reference "> >" part can be applied.
Please resubmit a clean patch instead of replying to the
old one.  Documentation/process/submitting-patches.rst has
details on the how-tos.

It is not a bug fix, so it belongs to bpf-next
(Documentation/bpf/bpf_devel_QA.rst).
Please tag it with bpf-next.  The next revision will be v2,
sample commands would be:
git format-patch --subject-prefix='PATCH v2 bpf-next' ...
./scripts/checkpatch.pl ...
git send-email ...
diff mbox series

Patch

diff --git a/tools/bpf/bpftool/feature.c b/tools/bpf/bpftool/feature.c
index 359960a8f..34343e7fa 100644
--- a/tools/bpf/bpftool/feature.c
+++ b/tools/bpf/bpftool/feature.c
@@ -336,6 +336,8 @@  static void probe_kernel_image_config(const char *define_prefix)
 		{ "CONFIG_BPF_JIT", },
 		/* Avoid compiling eBPF interpreter (use JIT only) */
 		{ "CONFIG_BPF_JIT_ALWAYS_ON", },
+		/* Enable using BTF debug information */
+		{ "CONFIG_DEBUG_INFO_BTF", },
 
 		/* cgroups */
 		{ "CONFIG_CGROUPS", },