diff options
Diffstat (limited to 'fs/ext3/super.c')
| -rw-r--r-- | fs/ext3/super.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/ext3/super.c b/fs/ext3/super.c index 5546ca225ff..fb5120a5505 100644 --- a/fs/ext3/super.c +++ b/fs/ext3/super.c @@ -353,7 +353,7 @@ static struct block_device *ext3_blkdev_get(dev_t dev, struct super_block *sb)  	return bdev;  fail: -	ext3_msg(sb, "error: failed to open journal device %s: %ld", +	ext3_msg(sb, KERN_ERR, "error: failed to open journal device %s: %ld",  		__bdevname(dev, b), PTR_ERR(bdev));  	return NULL; @@ -887,7 +887,7 @@ static ext3_fsblk_t get_sb_block(void **data, struct super_block *sb)  	/*todo: use simple_strtoll with >32bit ext3 */  	sb_block = simple_strtoul(options, &options, 0);  	if (*options && *options != ',') { -		ext3_msg(sb, "error: invalid sb specification: %s", +		ext3_msg(sb, KERN_ERR, "error: invalid sb specification: %s",  		       (char *) *data);  		return 1;  	} @@ -3068,6 +3068,7 @@ static struct file_system_type ext3_fs_type = {  	.kill_sb	= kill_block_super,  	.fs_flags	= FS_REQUIRES_DEV,  }; +MODULE_ALIAS_FS("ext3");  static int __init init_ext3_fs(void)  {  |