* [PATCH] kernel-parameters.rst: fix document warnings v2 @ 2025-08-18 8:26 Bartlomiej Kubik 2025-08-18 15:50 ` Randy Dunlap 2025-08-18 15:59 ` Jonathan Corbet 0 siblings, 2 replies; 4+ messages in thread From: Bartlomiej Kubik @ 2025-08-18 8:26 UTC (permalink / raw) To: corbet; +Cc: skhan, linux-doc, linux-kernel-mentees, rdunlap, Bartlomiej Kubik Fixed missing definite article "states that the parameter" as suggested. Signed-off-by: Bartlomiej Kubik <kubik.bartlomiej@gmail.com> --- Documentation/admin-guide/kernel-parameters.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/admin-guide/kernel-parameters.rst b/Documentation/admin-guide/kernel-parameters.rst index 445248787e77..7bf8cc7df6b5 100644 --- a/Documentation/admin-guide/kernel-parameters.rst +++ b/Documentation/admin-guide/kernel-parameters.rst @@ -215,7 +215,7 @@ need or coordination with <Documentation/arch/x86/boot.rst>. There are also arch-specific kernel-parameters not documented here. Note that ALL kernel parameters listed below are CASE SENSITIVE, and that -a trailing = on the name of any parameter states that parameter will +a trailing = on the name of any parameter states that the parameter will be entered as an environment variable, whereas its absence indicates that it will appear as a kernel argument readable via /proc/cmdline by programs running once the system is up. -- 2.39.5 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] kernel-parameters.rst: fix document warnings v2 2025-08-18 8:26 [PATCH] kernel-parameters.rst: fix document warnings v2 Bartlomiej Kubik @ 2025-08-18 15:50 ` Randy Dunlap 2025-08-18 15:59 ` Jonathan Corbet 1 sibling, 0 replies; 4+ messages in thread From: Randy Dunlap @ 2025-08-18 15:50 UTC (permalink / raw) To: Bartlomiej Kubik, corbet; +Cc: skhan, linux-doc, linux-kernel-mentees Hi, 1) "v2" in the Subject: line should be like this: [PATCH v2] On 8/18/25 1:26 AM, Bartlomiej Kubik wrote: > > Fixed missing definite article "states that the parameter" as suggested. > > > Signed-off-by: Bartlomiej Kubik <kubik.bartlomiej@gmail.com> > --- > Documentation/admin-guide/kernel-parameters.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/admin-guide/kernel-parameters.rst b/Documentation/admin-guide/kernel-parameters.rst > index 445248787e77..7bf8cc7df6b5 100644 > --- a/Documentation/admin-guide/kernel-parameters.rst > +++ b/Documentation/admin-guide/kernel-parameters.rst > @@ -215,7 +215,7 @@ need or coordination with <Documentation/arch/x86/boot.rst>. > There are also arch-specific kernel-parameters not documented here. > > Note that ALL kernel parameters listed below are CASE SENSITIVE, and that > -a trailing = on the name of any parameter states that parameter will > +a trailing = on the name of any parameter states that the parameter will 2) This diff should be against the source file that contains "that that parameter". It looks like you did the diff against your previous patch (unless I missed that previous patch being merged somewhere). > be entered as an environment variable, whereas its absence indicates that > it will appear as a kernel argument readable via /proc/cmdline by programs > running once the system is up. thanks. -- ~Randy ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] kernel-parameters.rst: fix document warnings v2 2025-08-18 8:26 [PATCH] kernel-parameters.rst: fix document warnings v2 Bartlomiej Kubik 2025-08-18 15:50 ` Randy Dunlap @ 2025-08-18 15:59 ` Jonathan Corbet 2025-08-19 6:40 ` Bartłomiej Kubik 1 sibling, 1 reply; 4+ messages in thread From: Jonathan Corbet @ 2025-08-18 15:59 UTC (permalink / raw) To: Bartlomiej Kubik Cc: skhan, linux-doc, linux-kernel-mentees, rdunlap, Bartlomiej Kubik Bartlomiej Kubik <kubik.bartlomiej@gmail.com> writes: > Fixed missing definite article "states that the parameter" as suggested. > > > Signed-off-by: Bartlomiej Kubik <kubik.bartlomiej@gmail.com> > --- > Documentation/admin-guide/kernel-parameters.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/admin-guide/kernel-parameters.rst b/Documentation/admin-guide/kernel-parameters.rst > index 445248787e77..7bf8cc7df6b5 100644 > --- a/Documentation/admin-guide/kernel-parameters.rst > +++ b/Documentation/admin-guide/kernel-parameters.rst > @@ -215,7 +215,7 @@ need or coordination with <Documentation/arch/x86/boot.rst>. > There are also arch-specific kernel-parameters not documented here. > > Note that ALL kernel parameters listed below are CASE SENSITIVE, and that > -a trailing = on the name of any parameter states that parameter will > +a trailing = on the name of any parameter states that the parameter will > be entered as an environment variable, whereas its absence indicates that Thank you for working to improve our documentation. That said, there are a number of problems to address here. - The patch does not apply to docs-next, or to any recent kernel release. Which version did you generate the patch against? - When you do a "v2" patch, you should include, after the "---" line, a summary of what changed since the previous version. That is especially true when you have seemingly just dropped one of the changes you made the first time around? Ah, I think I see...you generated this on top of your previous version? That explains why it didn't apply. Please do not do that; when a patch needs changes due to review comments, recreate the patch. - "Fix a warning" is rarely a good subject line for a patch; you should say what you actually did. In this case, "replace a duplicated word" or some such would be better. - Finally, Documentation/process/submitting-patches.rst asks that changelogs be written in the imperative form. I am not a stickler for that, but some other maintainers definitely are, so it is a good habit to adopt for all of your patches. Thanks, jon ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] kernel-parameters.rst: fix document warnings v2 2025-08-18 15:59 ` Jonathan Corbet @ 2025-08-19 6:40 ` Bartłomiej Kubik 0 siblings, 0 replies; 4+ messages in thread From: Bartłomiej Kubik @ 2025-08-19 6:40 UTC (permalink / raw) To: Jonathan Corbet; +Cc: skhan, linux-doc, linux-kernel-mentees, rdunlap Hi, Thank you for clarifying my mistakes, and I apologize for them. I mistakenly generated this patch against linux-mainline, which is why it doesn’t apply to docs-next. I will switch to the correct docs-next repository (git://git.lwn.net/linux.git docs-next), recreate the patch from a clean checkout, and include a full changelog section as you mentioned to me. On Mon, 18 Aug 2025 at 17:59, Jonathan Corbet <corbet@lwn.net> wrote: > > Bartlomiej Kubik <kubik.bartlomiej@gmail.com> writes: > > > Fixed missing definite article "states that the parameter" as suggested. > > > > > > Signed-off-by: Bartlomiej Kubik <kubik.bartlomiej@gmail.com> > > --- > > Documentation/admin-guide/kernel-parameters.rst | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/Documentation/admin-guide/kernel-parameters.rst b/Documentation/admin-guide/kernel-parameters.rst > > index 445248787e77..7bf8cc7df6b5 100644 > > --- a/Documentation/admin-guide/kernel-parameters.rst > > +++ b/Documentation/admin-guide/kernel-parameters.rst > > @@ -215,7 +215,7 @@ need or coordination with <Documentation/arch/x86/boot.rst>. > > There are also arch-specific kernel-parameters not documented here. > > > > Note that ALL kernel parameters listed below are CASE SENSITIVE, and that > > -a trailing = on the name of any parameter states that parameter will > > +a trailing = on the name of any parameter states that the parameter will > > be entered as an environment variable, whereas its absence indicates that > > Thank you for working to improve our documentation. That said, there > are a number of problems to address here. > > - The patch does not apply to docs-next, or to any recent kernel > release. Which version did you generate the patch against? > > - When you do a "v2" patch, you should include, after the "---" line, a > summary of what changed since the previous version. That is > especially true when you have seemingly just dropped one of the > changes you made the first time around? > > Ah, I think I see...you generated this on top of your previous > version? That explains why it didn't apply. Please do not do that; > when a patch needs changes due to review comments, recreate the patch. > > - "Fix a warning" is rarely a good subject line for a patch; you should > say what you actually did. In this case, "replace a duplicated word" > or some such would be better. > > - Finally, Documentation/process/submitting-patches.rst asks that > changelogs be written in the imperative form. I am not a stickler for > that, but some other maintainers definitely are, so it is a good habit > to adopt for all of your patches. > > Thanks, > > jon -- Best regards Bartłomiej Kubik ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-08-19 6:40 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-08-18 8:26 [PATCH] kernel-parameters.rst: fix document warnings v2 Bartlomiej Kubik 2025-08-18 15:50 ` Randy Dunlap 2025-08-18 15:59 ` Jonathan Corbet 2025-08-19 6:40 ` Bartłomiej Kubik
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).