mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] module: tracking: Extend format string of a seq_printf() call in unloaded_tainted_modules_seq_show()
@ 2024-07-14 11:51 Markus Elfring
  0 siblings, 0 replies; only message in thread
From: Markus Elfring @ 2024-07-14 11:51 UTC (permalink / raw)
  To: linux-modules, kernel-janitors, Luis Chamberlain; +Cc: LKML

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Sun, 14 Jul 2024 13:43:06 +0200
Subject: [PATCH] module: tracking: Extend format string of a seq_printf() call in unloaded_tainted_modules_seq_show()

* Move the specification of a single line break from a seq_puts() call
  into the format string of a previous seq_printf() call.

* Omit an extra call of the function “seq_puts”
  because of this refactoring.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 kernel/module/tracking.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/kernel/module/tracking.c b/kernel/module/tracking.c
index 16742d1c630c..9f84271c23b3 100644
--- a/kernel/module/tracking.c
+++ b/kernel/module/tracking.c
@@ -94,9 +94,7 @@ static int unloaded_tainted_modules_seq_show(struct seq_file *m, void *p)
 	l = module_flags_taint(mod_taint->taints, buf);
 	buf[l++] = '\0';

-	seq_printf(m, "%s (%s) %llu", mod_taint->name, buf, mod_taint->count);
-	seq_puts(m, "\n");
-
+	seq_printf(m, "%s (%s) %llu\n", mod_taint->name, buf, mod_taint->count);
 	return 0;
 }

--
2.45.2


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-07-14 11:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-14 11:51 [PATCH] module: tracking: Extend format string of a seq_printf() call in unloaded_tainted_modules_seq_show() Markus Elfring

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®