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:	Tue, 03 Nov 2009 16:19:02 +0000
From:	Phillip Lougher <phillip@...gher.demon.co.uk>
To:	jblunck@...e.de
Cc:	linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org,
	matthew@....cx
Subject: Re: [PATCH 01/27] BKL: Push down BKL from do_new_mount() to the filesystems get_sb/fill_super operation


Jan Blunck wrote:
> Attached is a new version of the patch that includes the changes for
> filesystems outside of fs/ directory as well. Besides that I trimmed the CC
> list this time.

Your patch fails to compile for configfs/btrfs/cramfs/befs and efs due
to a missing <linux/smp_lock.h> (at least with my .config).  The following
should fix this.

Signed-off-by: Phillip Lougher <phillip@...gher.demon.co.uk>
---
 fs/befs/linuxvfs.c  |    1 +
 fs/btrfs/super.c    |    1 +
 fs/configfs/mount.c |    1 +
 fs/cramfs/inode.c   |    1 +
 fs/efs/super.c      |    1 +
 5 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c
index f2aa193..ca48bc7 100644
--- a/fs/befs/linuxvfs.c
+++ b/fs/befs/linuxvfs.c
@@ -15,6 +15,7 @@
 #include <linux/vfs.h>
 #include <linux/parser.h>
 #include <linux/namei.h>
+#include <linux/smp_lock.h>
 
 #include "befs.h"
 #include "btree.h"
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c
index e5cd2cf..87a0185 100644
--- a/fs/btrfs/super.c
+++ b/fs/btrfs/super.c
@@ -38,6 +38,7 @@
 #include <linux/namei.h>
 #include <linux/miscdevice.h>
 #include <linux/magic.h>
+#include <linux/smp_lock.h>
 #include "compat.h"
 #include "ctree.h"
 #include "disk-io.h"
diff --git a/fs/configfs/mount.c b/fs/configfs/mount.c
index 5b2e06e..3d0e614 100644
--- a/fs/configfs/mount.c
+++ b/fs/configfs/mount.c
@@ -29,6 +29,7 @@
 #include <linux/mount.h>
 #include <linux/pagemap.h>
 #include <linux/init.h>
+#include <linux/smp_lock.h>
 
 #include <linux/configfs.h>
 #include "configfs_internal.h"
diff --git a/fs/cramfs/inode.c b/fs/cramfs/inode.c
index 13e696a..77aa05b 100644
--- a/fs/cramfs/inode.c
+++ b/fs/cramfs/inode.c
@@ -23,6 +23,7 @@
 #include <linux/buffer_head.h>
 #include <linux/vfs.h>
 #include <linux/mutex.h>
+#include <linux/smp_lock.h>
 
 #include <asm/uaccess.h>
 
diff --git a/fs/efs/super.c b/fs/efs/super.c
index 0981141..6a7d0fe 100644
--- a/fs/efs/super.c
+++ b/fs/efs/super.c
@@ -12,6 +12,7 @@
 #include <linux/slab.h>
 #include <linux/buffer_head.h>
 #include <linux/vfs.h>
+#include <linux/smp_lock.h>
 
 #include "efs.h"
 #include <linux/efs_vh.h>
-- 
1.5.2.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