linux-modules.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] docs: ABI: sysfs-module: update modules taint flags
@ 2025-11-02  6:04 Randy Dunlap
  2025-11-03  9:19 ` Petr Pavlu
  0 siblings, 1 reply; 3+ messages in thread
From: Randy Dunlap @ 2025-11-02  6:04 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Petr Pavlu, Jonathan Corbet, linux-doc,
	Greg Kroah-Hartman, Luis Chamberlain, Daniel Gomez, Sami Tolvanen,
	linux-modules

Add missing taint flags for loadable modules, as pointed out by
Petr Pavlu [1].

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
[1] https://lore.kernel.org/all/c58152f1-0fbe-4f50-bb61-e2f4c0584025@suse.com/
---
Cc: Petr Pavlu <petr.pavlu@suse.com>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Luis Chamberlain <mcgrof@kernel.org>
Cc: Daniel Gomez <da.gomez@kernel.org>
Cc: Sami Tolvanen <samitolvanen@google.com>
Cc: linux-modules@vger.kernel.org
---
 Documentation/ABI/testing/sysfs-module |    2 ++
 1 file changed, 2 insertions(+)

--- linux-next-20251031.orig/Documentation/ABI/testing/sysfs-module
+++ linux-next-20251031/Documentation/ABI/testing/sysfs-module
@@ -59,6 +59,8 @@ Description:	Module taint flags:
 			F   force-loaded module
 			C   staging driver module
 			E   unsigned module
+			K   livepatch module
+			N   in-kernel test module
 			==  =====================
 
 What:		/sys/module/grant_table/parameters/free_per_iteration

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] docs: ABI: sysfs-module: update modules taint flags
  2025-11-02  6:04 [PATCH] docs: ABI: sysfs-module: update modules taint flags Randy Dunlap
@ 2025-11-03  9:19 ` Petr Pavlu
  2025-11-05 18:33   ` Jonathan Corbet
  0 siblings, 1 reply; 3+ messages in thread
From: Petr Pavlu @ 2025-11-03  9:19 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Jonathan Corbet, linux-doc, Greg Kroah-Hartman, Luis Chamberlain,
	Daniel Gomez, Sami Tolvanen, linux-modules, linux-kernel

On 11/2/25 7:04 AM, Randy Dunlap wrote:
> Add missing taint flags for loadable modules, as pointed out by
> Petr Pavlu [1].
> 
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> [1] https://lore.kernel.org/all/c58152f1-0fbe-4f50-bb61-e2f4c0584025@suse.com/
> ---

Looks ok to me. I would only move the "[1]" line before the
"Signed-off-by" tag in the commit message and separate them by an empty
line. Some tooling might rely on the tags being separately at the end.
I guess this can be directly adjusted by a maintainer that picks up the
patch and there is no need to resend it.

Reviewed-by: Petr Pavlu <petr.pavlu@suse.com>

-- 
Thanks,
Petr

> Cc: Petr Pavlu <petr.pavlu@suse.com>
> Cc: Jonathan Corbet <corbet@lwn.net>
> Cc: linux-doc@vger.kernel.org
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Cc: Luis Chamberlain <mcgrof@kernel.org>
> Cc: Daniel Gomez <da.gomez@kernel.org>
> Cc: Sami Tolvanen <samitolvanen@google.com>
> Cc: linux-modules@vger.kernel.org
> ---
>  Documentation/ABI/testing/sysfs-module |    2 ++
>  1 file changed, 2 insertions(+)
> 
> --- linux-next-20251031.orig/Documentation/ABI/testing/sysfs-module
> +++ linux-next-20251031/Documentation/ABI/testing/sysfs-module
> @@ -59,6 +59,8 @@ Description:	Module taint flags:
>  			F   force-loaded module
>  			C   staging driver module
>  			E   unsigned module
> +			K   livepatch module
> +			N   in-kernel test module
>  			==  =====================
>  
>  What:		/sys/module/grant_table/parameters/free_per_iteration


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] docs: ABI: sysfs-module: update modules taint flags
  2025-11-03  9:19 ` Petr Pavlu
@ 2025-11-05 18:33   ` Jonathan Corbet
  0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Corbet @ 2025-11-05 18:33 UTC (permalink / raw)
  To: Petr Pavlu, Randy Dunlap
  Cc: linux-doc, Greg Kroah-Hartman, Luis Chamberlain, Daniel Gomez,
	Sami Tolvanen, linux-modules, linux-kernel

Petr Pavlu <petr.pavlu@suse.com> writes:

> On 11/2/25 7:04 AM, Randy Dunlap wrote:
>> Add missing taint flags for loadable modules, as pointed out by
>> Petr Pavlu [1].
>> 
>> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
>> [1] https://lore.kernel.org/all/c58152f1-0fbe-4f50-bb61-e2f4c0584025@suse.com/
>> ---
>
> Looks ok to me. I would only move the "[1]" line before the
> "Signed-off-by" tag in the commit message and separate them by an empty
> line. Some tooling might rely on the tags being separately at the end.
> I guess this can be directly adjusted by a maintainer that picks up the
> patch and there is no need to resend it.
>
> Reviewed-by: Petr Pavlu <petr.pavlu@suse.com>

I went to do that, and was amused to find that b4 already took care of
it for me ...  applied, thanks.

jon

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-11-05 18:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-02  6:04 [PATCH] docs: ABI: sysfs-module: update modules taint flags Randy Dunlap
2025-11-03  9:19 ` Petr Pavlu
2025-11-05 18:33   ` Jonathan Corbet

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).