diff options
Diffstat (limited to 'fs/ufs/super.c')
-rw-r--r-- | fs/ufs/super.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/ufs/super.c b/fs/ufs/super.c index e9055ef7f5ac..db98a4c71e63 100644 --- a/fs/ufs/super.c +++ b/fs/ufs/super.c | |||
@@ -575,7 +575,7 @@ static int ufs_fill_super(struct super_block *sb, void *data, int silent) | |||
575 | if (!silent) | 575 | if (!silent) |
576 | printk("You didn't specify the type of your ufs filesystem\n\n" | 576 | printk("You didn't specify the type of your ufs filesystem\n\n" |
577 | "mount -t ufs -o ufstype=" | 577 | "mount -t ufs -o ufstype=" |
578 | "sun|sunx86|44bsd|ufs2|5xbsd|old|hp|nextstep|netxstep-cd|openstep ...\n\n" | 578 | "sun|sunx86|44bsd|ufs2|5xbsd|old|hp|nextstep|nextstep-cd|openstep ...\n\n" |
579 | ">>>WARNING<<< Wrong ufstype may corrupt your filesystem, " | 579 | ">>>WARNING<<< Wrong ufstype may corrupt your filesystem, " |
580 | "default is ufstype=old\n"); | 580 | "default is ufstype=old\n"); |
581 | ufs_set_opt (sbi->s_mount_opt, UFSTYPE_OLD); | 581 | ufs_set_opt (sbi->s_mount_opt, UFSTYPE_OLD); |
@@ -1184,7 +1184,8 @@ static int init_inodecache(void) | |||
1184 | { | 1184 | { |
1185 | ufs_inode_cachep = kmem_cache_create("ufs_inode_cache", | 1185 | ufs_inode_cachep = kmem_cache_create("ufs_inode_cache", |
1186 | sizeof(struct ufs_inode_info), | 1186 | sizeof(struct ufs_inode_info), |
1187 | 0, SLAB_RECLAIM_ACCOUNT, | 1187 | 0, (SLAB_RECLAIM_ACCOUNT| |
1188 | SLAB_MEM_SPREAD), | ||
1188 | init_once, NULL); | 1189 | init_once, NULL); |
1189 | if (ufs_inode_cachep == NULL) | 1190 | if (ufs_inode_cachep == NULL) |
1190 | return -ENOMEM; | 1191 | return -ENOMEM; |