[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20091110121511.5adca8a9.akpm@linux-foundation.org>
Date: Tue, 10 Nov 2009 12:15:11 -0800
From: Andrew Morton <akpm@...ux-foundation.org>
To: Phillip Lougher <phillip@...gher.demon.co.uk>
Cc: jblunck@...e.de, linux-fsdevel@...r.kernel.org,
linux-kernel@...r.kernel.org, matthew@....cx,
viro@...iv.linux.org.uk
Subject: Re: BKL: Remove BKL from Squashfs
On Tue, 03 Nov 2009 15:15:16 +0000
Phillip Lougher <phillip@...gher.demon.co.uk> wrote:
>
> BKL is only used in fill_super/put_super. It is safe to remove it.
>
What kernel are you trying to patch here?
Most of your patch is already present in mainline. Against mainline,
this what is left of your patch:
--- a/fs/squashfs/super.c~bkl-remove-bkl-from-squashfs
+++ a/fs/squashfs/super.c
@@ -30,7 +30,6 @@
#include <linux/fs.h>
#include <linux/vfs.h>
#include <linux/slab.h>
-#include <linux/smp_lock.h>
#include <linux/mutex.h>
#include <linux/pagemap.h>
#include <linux/init.h>
@@ -339,8 +338,6 @@ static int squashfs_remount(struct super
static void squashfs_put_super(struct super_block *sb)
{
- lock_kernel();
-
if (sb->s_fs_info) {
struct squashfs_sb_info *sbi = sb->s_fs_info;
squashfs_cache_delete(sbi->block_cache);
@@ -353,8 +350,6 @@ static void squashfs_put_super(struct su
kfree(sb->s_fs_info);
sb->s_fs_info = NULL;
}
-
- unlock_kernel();
}
So someone has decided to remove lots of lock_kernel()'s but chose to
leave the squashfs_put_super() ones behind.
Why did they do that? Your patch effectively asserts that their
decision was incorrect.
So please rethink, update the changelog appropriately and resend.
--
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