diff options
| author | Linus Torvalds <torvalds@home.transmeta.com> | 2002-04-23 09:59:52 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-04-23 09:59:52 -0700 |
| commit | 7fb7f2ac3aa613f6aa254894eaba1ea7e168651c (patch) | |
| tree | 3c36031b8b54d7f9ffc06594655e283e6daf8ed3 | |
| parent | 4ee6539d90ac47e9b3649dcc04f0672f43a80cb6 (diff) | |
Fix include files for write_super BKL move.
| -rw-r--r-- | fs/affs/super.c | 1 | ||||
| -rw-r--r-- | fs/ext2/super.c | 1 | ||||
| -rw-r--r-- | fs/hfs/super.c | 1 | ||||
| -rw-r--r-- | fs/jffs2/fs.c | 1 | ||||
| -rw-r--r-- | fs/udf/super.c | 1 | ||||
| -rw-r--r-- | fs/ufs/super.c | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/fs/affs/super.c b/fs/affs/super.c index ee6567914cda..f7f9c4804ba9 100644 --- a/fs/affs/super.c +++ b/fs/affs/super.c @@ -26,6 +26,7 @@ #include <linux/major.h> #include <linux/blkdev.h> #include <linux/init.h> +#include <linux/smp_lock.h> #include <asm/system.h> #include <asm/uaccess.h> diff --git a/fs/ext2/super.c b/fs/ext2/super.c index f6944c723083..db59722a8c30 100644 --- a/fs/ext2/super.c +++ b/fs/ext2/super.c @@ -25,6 +25,7 @@ #include <linux/locks.h> #include <linux/blkdev.h> #include <linux/random.h> +#include <linux/smp_lock.h> #include <asm/uaccess.h> diff --git a/fs/hfs/super.c b/fs/hfs/super.c index 74d9801d2704..38854bbb7703 100644 --- a/fs/hfs/super.c +++ b/fs/hfs/super.c @@ -31,6 +31,7 @@ #include <linux/blkdev.h> #include <linux/module.h> #include <linux/init.h> +#include <linux/smp_lock.h> MODULE_LICENSE("GPL"); diff --git a/fs/jffs2/fs.c b/fs/jffs2/fs.c index 3935f605b926..5ba50e415d61 100644 --- a/fs/jffs2/fs.c +++ b/fs/jffs2/fs.c @@ -44,6 +44,7 @@ #include <linux/mtd/mtd.h> #include <linux/pagemap.h> #include <linux/slab.h> +#include <linux/smp_lock.h> #include "nodelist.h" int jffs2_statfs(struct super_block *sb, struct statfs *buf) diff --git a/fs/udf/super.c b/fs/udf/super.c index c96277b65b1e..bc8a0576ec45 100644 --- a/fs/udf/super.c +++ b/fs/udf/super.c @@ -55,6 +55,7 @@ #include <linux/stat.h> #include <linux/cdrom.h> #include <linux/nls.h> +#include <linux/smp_lock.h> #include <asm/byteorder.h> #include <linux/udf_fs.h> diff --git a/fs/ufs/super.c b/fs/ufs/super.c index a3c51e79183c..6d4af87b3ec9 100644 --- a/fs/ufs/super.c +++ b/fs/ufs/super.c @@ -80,6 +80,7 @@ #include <linux/locks.h> #include <linux/blkdev.h> #include <linux/init.h> +#include <linux/smp_lock.h> #include "swab.h" #include "util.h" |
