diff options
author | Muthu Kumar <muthu.lkml@gmail.com> | 2012-03-23 15:01:50 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-23 16:58:31 -0700 |
commit | b502bd1152472dc1b98c60434f23c23b280c7b94 (patch) | |
tree | 4de5d63e00a348108c436ebfd0639b57295e4bfe /fs/block_dev.c | |
parent | d982d5955e9033015a2cc119aa7c0a878e275964 (diff) | |
download | kernel_goldelico_gta04-b502bd1152472dc1b98c60434f23c23b280c7b94.zip kernel_goldelico_gta04-b502bd1152472dc1b98c60434f23c23b280c7b94.tar.gz kernel_goldelico_gta04-b502bd1152472dc1b98c60434f23c23b280c7b94.tar.bz2 |
magic.h: move some FS magic numbers into magic.h
- Move open-coded filesystem magic numbers into magic.h
- Rearrange magic.h so that the filesystem-related constants are grouped
together.
Signed-off-by: Muthukumar R <muthur@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/block_dev.c')
-rw-r--r-- | fs/block_dev.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/block_dev.c b/fs/block_dev.c index a9ff300..e08f6a20 100644 --- a/fs/block_dev.c +++ b/fs/block_dev.c @@ -16,6 +16,7 @@ #include <linux/blkdev.h> #include <linux/module.h> #include <linux/blkpg.h> +#include <linux/magic.h> #include <linux/buffer_head.h> #include <linux/swap.h> #include <linux/pagevec.h> @@ -506,7 +507,7 @@ static const struct super_operations bdev_sops = { static struct dentry *bd_mount(struct file_system_type *fs_type, int flags, const char *dev_name, void *data) { - return mount_pseudo(fs_type, "bdev:", &bdev_sops, NULL, 0x62646576); + return mount_pseudo(fs_type, "bdev:", &bdev_sops, NULL, BDEVFS_MAGIC); } static struct file_system_type bd_type = { |