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 for Android: free password hash cracker in your pocket
[<prev] [next>] [day] [month] [year] [list]
Date:	Wed,  8 Apr 2009 22:17:53 +0200
From:	Frederic Weisbecker <fweisbec@...il.com>
To:	Ingo Molnar <mingo@...e.hu>
Cc:	LKML <linux-kernel@...r.kernel.org>,
	Frederic Weisbecker <fweisbec@...il.com>,
	Alessio Igor Bogani <abogani@...ware.it>
Subject: [PATCH] kill-the-BKL: fix missing #include smp_lock.h

Impact: fix a build error

Latest tip:kill-the-BKL tree triggers this build error:

  CC      kernel/hung_task.o
kernel/hung_task.c: In function ‘check_hung_task’:
kernel/hung_task.c:103: erreur: implicit declaration of function ‘debug_print_bkl’
make[1]: *** [kernel/hung_task.o] Erreur 1
make: *** [kernel/hung_task.o] Erreur 2

hung_task.c forget to include smp_lock.h

Signed-off-by: Frederic Weisbecker <fweisbec@...il.com>
---
 kernel/hung_task.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/kernel/hung_task.c b/kernel/hung_task.c
index ea199d5..c790a59 100644
--- a/kernel/hung_task.c
+++ b/kernel/hung_task.c
@@ -13,6 +13,7 @@
 #include <linux/freezer.h>
 #include <linux/kthread.h>
 #include <linux/lockdep.h>
+#include <linux/smp_lock.h>
 #include <linux/module.h>
 #include <linux/sysctl.h>
 
-- 
1.6.1

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