mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] locking-selftest: add option to proceed through unexpected failures
@ 2020-11-13 23:00 Jim Cromie
  2020-11-17 10:02 ` Peter Zijlstra
  0 siblings, 1 reply; 3+ messages in thread
From: Jim Cromie @ 2020-11-13 23:00 UTC (permalink / raw)
  To: linux-kernel; +Cc: Jim Cromie, Peter Zijlstra, Ingo Molnar, Will Deacon

Locking selftest is currently (v.5.10-rc3) seeing 14 unexpected failures.
Add option to not disable debug_locks, so as to let it reveal any
locking flaws in new unrelated work.

Signed-off-by: Jim Cromie <jim.cromie@gmail.com>
---
 lib/locking-selftest.c | 21 ++++++++++++++++++---
 1 file changed, 18 insertions(+), 3 deletions(-)

diff --git a/lib/locking-selftest.c b/lib/locking-selftest.c
index a899b3f0e2e5..87889bcf3232 100644
--- a/lib/locking-selftest.c
+++ b/lib/locking-selftest.c
@@ -41,6 +41,20 @@ static int __init setup_debug_locks_verbose(char *str)
 
 __setup("debug_locks_verbose=", setup_debug_locks_verbose);
 
+/*
+ * proceed thru debug fails, leave debugging enabled
+ */
+static unsigned int debug_locks_proceed;
+
+static int __init setup_debug_locks_proceed(char *str)
+{
+	get_option(&str, &debug_locks_proceed);
+
+	return 1;
+}
+
+__setup("debug_locks_proceed=", setup_debug_locks_proceed);
+
 #define FAILURE		0
 #define SUCCESS		1
 
@@ -2480,9 +2494,10 @@ void locking_selftest(void)
 
 	if (unexpected_testcase_failures) {
 		printk("-----------------------------------------------------------------\n");
-		debug_locks = 0;
-		printk("BUG: %3d unexpected failures (out of %3d) - debugging disabled! |\n",
-			unexpected_testcase_failures, testcase_total);
+		debug_locks = debug_locks_proceed;
+		printk("BUG: %3d unexpected failures (out of %3d) - debugging %s! |\n",
+		       unexpected_testcase_failures, testcase_total,
+		       (!debug_locks_proceed) ? "disabled" : "proceeding anyway");
 		printk("-----------------------------------------------------------------\n");
 	} else if (expected_testcase_failures && testcase_successes) {
 		printk("--------------------------------------------------------\n");
-- 
2.28.0


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

end of thread, other threads:[~2020-11-24 21:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-13 23:00 [PATCH] locking-selftest: add option to proceed through unexpected failures Jim Cromie
2020-11-17 10:02 ` Peter Zijlstra
2020-11-24 21:27   ` jim.cromie

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®