Re: [PATCH] docs: networking: Add title caret and missing doc

2019-09-30 Thread Jakub Kicinski
On Sat, 28 Sep 2019 22:39:17 +1000, Adam Zerella wrote: > Resolving a couple of Sphinx documentation warnings > that are generated in the networking section. > > - WARNING: document isn't included in any toctree > - WARNING: Title underline too short. > > Signed-off-by: Adam Zerella > --- > Doc

Re: Why no section for "Kernel/Linux Documentation" here : https://patchwork.kernel.org/

2019-09-30 Thread Jonathan Corbet
On Mon, 30 Sep 2019 21:28:26 +0530 Bhaskar Chowdhury wrote: > Why that page missing a section "Kernel Documentation" ?? OR am I > missing the title therenot sure...there must be some reason. Many kernel subsystems do not use patchwork; documentation has always been one of them. Perhaps th

Re: [PATCH v2 1/3] x86/boot: Introduce the kernel_info

2019-09-30 Thread H. Peter Anvin
On 2019-09-30 08:01, Daniel Kiper wrote: > > OK. > >> field for the entire .kernel_info section, thus ensuring it is a >> single self-contained blob. > > .rodata.kernel_info contains its total size immediately behind the > "InfO" header. Do you suggest that we should add the size of > .rodata.ke

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

2019-09-30 Thread Jonathan Corbet
On Sat, 28 Sep 2019 10:55:57 +0200 Stephen Kitt wrote: > Wouldn’t it be better to update the docs simultaneously in each patch which > fixes a structure? Or is that unworkable with current development practices? Definitely update the two together. The doc fix should just go through the appropri

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

2019-09-30 Thread Gustavo A. R. Silva
On 9/30/19 02:38, Stephen Kitt wrote: > This switches zero-length arrays in variable-length structs to C99 > flexible array members. GCC will then ensure that the arrays are > always the last element in the struct. > > Coccinelle: > @@ > identifier S, fld; > type T; > @@ > > struct S { > ...

Why no section for "Kernel/Linux Documentation" here : https://patchwork.kernel.org/

2019-09-30 Thread Bhaskar Chowdhury
Hi Randy/Jon, Why that page missing a section "Kernel Documentation" ?? OR am I missing the title therenot sure...there must be some reason. Thanks, Bhaskar signature.asc Description: PGP signature

Re: [GIT PULL] remove dead mutt url and add active mutt url

2019-09-30 Thread Bhaskar Chowdhury
On 08:28 Mon 30 Sep 2019, Randy Dunlap wrote: On 9/30/19 8:26 AM, Bhaskar Chowdhury wrote: On 08:13 Mon 30 Sep 2019, Jonathan Corbet wrote: On Sat, 28 Sep 2019 20:43:03 +0530 Bhaskar Chowdhury wrote: The following changes since commit 4e4327891fe2a2a4db342985bff4d4c48703c707:   replace dead

Re: [PATCH v2 1/3] x86/boot: Introduce the kernel_info

2019-09-30 Thread Daniel Kiper
On Fri, Jul 12, 2019 at 09:04:23AM -0700, h...@zytor.com wrote: > On July 4, 2019 9:36:10 AM PDT, Daniel Kiper wrote: > >The relationships between the headers are analogous to the various data > >sections: > > > > setup_header = .data > > boot_params/setup_data = .bss > > > >What is missing from

Re: [PATCH] docs: arm64: Fix indentation and doc formatting

2019-09-30 Thread Will Deacon
On Sat, Sep 28, 2019 at 10:58:19PM +1000, Adam Zerella wrote: > Sphinx generates the following warnings for the arm64 doc > pages: > > Documentation/arm64/memory.rst:158: WARNING: Unexpected indentation. > Documentation/arm64/memory.rst:162: WARNING: Unexpected indentation. > > These indentations

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

2019-09-30 Thread Stephen Kitt
Le 30/09/2019 08:07, Song Liu a écrit : On Sep 28, 2019, at 10:49 PM, Gustavo A. R. Silva wrote: I think you should preserve the tab here. Agreed. Indeed (and I thought I’d checked whitespace changes!). V2 upcoming with an improved Coccinelle script which preserves whitespace and fixes a

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

2019-09-30 Thread Daniel Borkmann
On Sat, Sep 28, 2019 at 04:48:14PM +0200, Stephen Kitt wrote: > This switches zero-length arrays in variable-length structs to C99 > flexible array members. GCC will then ensure that the arrays are > always the last element in the struct. > > Coccinelle: > @@ > identifier S, fld; > type T; > @@ >

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

2019-09-30 Thread Stephen Kitt
This switches zero-length arrays in variable-length structs to C99 flexible array members. GCC will then ensure that the arrays are always the last element in the struct. Coccinelle: @@ identifier S, fld; type T; @@ struct S { ... T fld[ - 0 ]; ... }; Signed-off-by: Stephen Kitt --- Do