summaryrefslogtreecommitdiffstats
path: root/fs/ext4
diff options
context:
space:
mode:
authorTheodore Ts'o2009-12-21 16:56:09 +0100
committerTheodore Ts'o2009-12-21 16:56:09 +0100
commit51b7e3c9fbe7d22d4e355101e9a73b44fc5c9feb (patch)
tree490f2fd007d657a09ad33820c85ff75ee15bce96 /fs/ext4
parentext4: Don't ask about supporting ext2/3 in ext4 if ext4 is not configured (diff)
downloadkernel-qcow2-linux-51b7e3c9fbe7d22d4e355101e9a73b44fc5c9feb.tar.gz
kernel-qcow2-linux-51b7e3c9fbe7d22d4e355101e9a73b44fc5c9feb.tar.xz
kernel-qcow2-linux-51b7e3c9fbe7d22d4e355101e9a73b44fc5c9feb.zip
ext4: add module aliases for ext2 and ext3
Add module aliases for ext2 and ext3 when CONFIG_EXT4_USE_FOR_EXT23 is set. This makes the existing user-space stuff like mkinitrd working as is. Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r--fs/ext4/super.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index 6ed9aa91f27d..0a06fe6f2bc2 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -4005,6 +4005,7 @@ static inline void unregister_as_ext2(void)
{
unregister_filesystem(&ext2_fs_type);
}
+MODULE_ALIAS("ext2");
#else
static inline void register_as_ext2(void) { }
static inline void unregister_as_ext2(void) { }
@@ -4031,6 +4032,7 @@ static inline void unregister_as_ext3(void)
{
unregister_filesystem(&ext3_fs_type);
}
+MODULE_ALIAS("ext3");
#else
static inline void register_as_ext3(void) { }
static inline void unregister_as_ext3(void) { }