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>] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.DEB.2.02.1104281346060.14343@dr-wily.mit.edu>
Date:	Thu, 28 Apr 2011 13:53:43 -0400 (EDT)
From:	Anders Kaseorg <andersk@...lice.com>
To:	Steven Rostedt <srostedt@...hat.com>
cc:	Jason Baron <jbaron@...hat.com>,
	Masami Hiramatsu <mhiramat@...hat.com>,
	Ingo Molnar <mingo@...e.hu>, linux-kernel@...r.kernel.org
Subject: [PATCH] jump label: Fix jump_label_text_reserved

This typo prevented jump_label_text_reserved from checking for any
conflicts in the core kernel.

Signed-off-by: Anders Kaseorg <andersk@...lice.com>
---
 kernel/jump_label.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/jump_label.c b/kernel/jump_label.c
index 3b79bd9..4aedde1 100644
--- a/kernel/jump_label.c
+++ b/kernel/jump_label.c
@@ -250,7 +250,7 @@ int jump_label_text_reserved(void *start, void *end)
 {
 	struct jump_entry *iter;
 	struct jump_entry *iter_start = __start___jump_table;
-	struct jump_entry *iter_stop = __start___jump_table;
+	struct jump_entry *iter_stop = __stop___jump_table;
 	int conflict = 0;
 
 	iter = iter_start;
-- 
1.7.5

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