diff options
| author | Miklos Szeredi <mszeredi@suse.cz> | 2008-02-08 07:21:38 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 12:22:40 -0500 |
| commit | 552c3c6c565d08857df48e77e8ce2b223517c3ee (patch) | |
| tree | 0613a4bc6f80f3f42773a931f4c75627873f5742 /fs/befs | |
| parent | 979db7542d9c73db0d770110edb31c1252ef6c4a (diff) | |
mount options: fix befs
Add a .show_options super operation to befs.
Use generic_show_options() and save the complete option string in
befs_fill_super().
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Cc: Sergey S. Kostyliov <rathamahata@php4.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/befs')
| -rw-r--r-- | fs/befs/linuxvfs.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c index 403fe661c144..82123ff3e1dd 100644 --- a/fs/befs/linuxvfs.c +++ b/fs/befs/linuxvfs.c | |||
| @@ -57,6 +57,7 @@ static const struct super_operations befs_sops = { | |||
| 57 | .put_super = befs_put_super, /* uninit super */ | 57 | .put_super = befs_put_super, /* uninit super */ |
| 58 | .statfs = befs_statfs, /* statfs */ | 58 | .statfs = befs_statfs, /* statfs */ |
| 59 | .remount_fs = befs_remount, | 59 | .remount_fs = befs_remount, |
| 60 | .show_options = generic_show_options, | ||
| 60 | }; | 61 | }; |
| 61 | 62 | ||
| 62 | /* slab cache for befs_inode_info objects */ | 63 | /* slab cache for befs_inode_info objects */ |
| @@ -759,10 +760,11 @@ befs_fill_super(struct super_block *sb, void *data, int silent) | |||
| 759 | befs_super_block *disk_sb; | 760 | befs_super_block *disk_sb; |
| 760 | struct inode *root; | 761 | struct inode *root; |
| 761 | long ret = -EINVAL; | 762 | long ret = -EINVAL; |
| 762 | |||
| 763 | const unsigned long sb_block = 0; | 763 | const unsigned long sb_block = 0; |
| 764 | const off_t x86_sb_off = 512; | 764 | const off_t x86_sb_off = 512; |
| 765 | 765 | ||
| 766 | save_mount_options(sb, data); | ||
| 767 | |||
| 766 | sb->s_fs_info = kmalloc(sizeof (*befs_sb), GFP_KERNEL); | 768 | sb->s_fs_info = kmalloc(sizeof (*befs_sb), GFP_KERNEL); |
| 767 | if (sb->s_fs_info == NULL) { | 769 | if (sb->s_fs_info == NULL) { |
| 768 | printk(KERN_ERR | 770 | printk(KERN_ERR |
