Re: [PATCH 2/9] Documentation: driver-api: correct spelling

2023-01-30 Thread Song Liu
-me...@vger.kernel.org > Cc: Dan Williams > Cc: Vishal Verma > Cc: Dave Jiang > Cc: nvd...@lists.linux.dev > Cc: Vinod Koul > Cc: dmaeng...@vger.kernel.org > Cc: Song Liu > Cc: linux-r...@vger.kernel.org > Cc: Greg Kroah-Hartman > Cc: linux-...@vger.kernel.org

Re: [PATCH] bpf: use flexible array members, not zero-length

2019-09-29 Thread Song Liu
>> --- a/tools/lib/bpf/libbpf_internal.h >> +++ b/tools/lib/bpf/libbpf_internal.h >> @@ -86,7 +86,7 @@ struct btf_ext_info_sec { >> __u32 sec_name_off; >> __u32 num_info; >> /* Followed by num_info * record_size number of bytes */ >> -__u8data[0]; >> +__u8 data[]; > > I think you should preserve the tab here. Agreed. Besides this: Acked-by: Song Liu

Re: [PATCH 08/22] docs: bpf: get rid of two warnings

2019-05-30 Thread Song Liu
On Wed, May 29, 2019 at 4:25 PM Mauro Carvalho Chehab wrote: > > Documentation/bpf/btf.rst:154: WARNING: Unexpected indentation. > Documentation/bpf/btf.rst:163: WARNING: Unexpected indentation. > > Signed-off-by: Mauro Carvalho Chehab Acked-by: Song Liu > --- > Document