lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Wed, 06 Sep 2006 09:07:21 -0700
From:	Don Mullis <dwm@...r.net>
To:	lkml <linux-kernel@...r.kernel.org>
Subject: Re: [patch 5/6] debugfs entries for configuration [bug fix]

Fix compilation when (CONFIG_FAILSLAB=n ^ CONFIG_FAIL_MAKE_REQUEST=n).

Signed-off-by: Don Mullis <dwm@...r.net>

---
 lib/should_fail_knobs.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Index: linux-2.6.17/lib/should_fail_knobs.c
===================================================================
--- linux-2.6.17.orig/lib/should_fail_knobs.c
+++ linux-2.6.17/lib/should_fail_knobs.c
@@ -124,13 +124,13 @@ static struct should_fail_knobs fail_mak
 static void cleanup_knobs(void)
 {
 #ifdef CONFIG_FAILSLAB
-	cleanup_should_fail_knobs(&fail_make_request_knobs);
+	cleanup_should_fail_knobs(&failslab_knobs);
 #endif
 #ifdef CONFIG_FAIL_PAGE_ALLOC
 	cleanup_should_fail_knobs(&fail_page_alloc_knobs);
 #endif
 #ifdef CONFIG_FAIL_MAKE_REQUEST
-	cleanup_should_fail_knobs(&failslab_knobs);
+	cleanup_should_fail_knobs(&fail_make_request_knobs);
 #endif
 }
 


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ