On 2020-08-12 09:33, Leah Rumancik wrote: > Update prog_type_name[] to include missing entry for BPF_PROG_TYPE_LSM > > Signed-off-by: Kjetil Ørbekk <orbekk@xxxxxxxxxx> > Signed-off-by: Harshad Shirwadkar <harshads@xxxxxxxxxx> > Signed-off-by: Leah Rumancik <leah.rumancik@xxxxxxxxx> > --- > tools/bpf/bpftool/main.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/tools/bpf/bpftool/main.h b/tools/bpf/bpftool/main.h > index 0607ae6f6d90..ccc6ac9f82c2 100644 > --- a/tools/bpf/bpftool/main.h > +++ b/tools/bpf/bpftool/main.h > @@ -86,6 +86,7 @@ static const char * const prog_type_name[] = { > [BPF_PROG_TYPE_TRACING] = "tracing", > [BPF_PROG_TYPE_STRUCT_OPS] = "struct_ops", > [BPF_PROG_TYPE_EXT] = "ext", > + [BPF_PROG_TYPE_LSM] = "lsm", > [BPF_PROG_TYPE_IO_FILTER] = "io_filter", > }; Is this perhaps intended as a bug fix for commit fc611f47f218 ("bpf: Introduce BPF_PROG_TYPE_LSM")? If so, please include a Fixes: tag, Cc the authors of that patch and move this patch to the start of this patch series. Thanks, Bart.