diff options
Diffstat (limited to 'fs/ext3/super.c')
| -rw-r--r-- | fs/ext3/super.c | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/ext3/super.c b/fs/ext3/super.c index 7beb69ae001..922d289aeeb 100644 --- a/fs/ext3/super.c +++ b/fs/ext3/super.c @@ -652,8 +652,6 @@ static int ext3_show_options(struct seq_file *seq, struct vfsmount *vfs)  		seq_puts(seq, ",nouid32");  	if (test_opt(sb, DEBUG))  		seq_puts(seq, ",debug"); -	if (test_opt(sb, OLDALLOC)) -		seq_puts(seq, ",oldalloc");  #ifdef CONFIG_EXT3_FS_XATTR  	if (test_opt(sb, XATTR_USER))  		seq_puts(seq, ",user_xattr"); @@ -1049,10 +1047,12 @@ static int parse_options (char *options, struct super_block *sb,  			set_opt (sbi->s_mount_opt, DEBUG);  			break;  		case Opt_oldalloc: -			set_opt (sbi->s_mount_opt, OLDALLOC); +			ext3_msg(sb, KERN_WARNING, +				"Ignoring deprecated oldalloc option");  			break;  		case Opt_orlov: -			clear_opt (sbi->s_mount_opt, OLDALLOC); +			ext3_msg(sb, KERN_WARNING, +				"Ignoring deprecated orlov option");  			break;  #ifdef CONFIG_EXT3_FS_XATTR  		case Opt_user_xattr: @@ -2669,13 +2669,13 @@ static int ext3_remount (struct super_block * sb, int * flags, char * data)  			/*  			 * If we have an unprocessed orphan list hanging  			 * around from a previously readonly bdev mount, -			 * require a full umount/remount for now. +			 * require a full umount & mount for now.  			 */  			if (es->s_last_orphan) {  				ext3_msg(sb, KERN_WARNING, "warning: couldn't "  				       "remount RDWR because of unprocessed "  				       "orphan inode list.  Please " -				       "umount/remount instead."); +				       "umount & mount instead.");  				err = -EINVAL;  				goto restore_opts;  			}  |