diff mbox

Btrfs: fix missing printk priority level

Message ID 1297559248-18636-1-git-send-email-yoshinori.sano@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Yoshinori Sano Feb. 13, 2011, 1:07 a.m. UTC
None
diff mbox

Patch

diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c
index 0209b5f..f6ce38c 100644
--- a/fs/btrfs/super.c
+++ b/fs/btrfs/super.c
@@ -577,7 +577,7 @@  static int btrfs_fill_super(struct super_block *sb,
 	tree_root = open_ctree(sb, fs_devices, (char *)data);
 
 	if (IS_ERR(tree_root)) {
-		printk("btrfs: open_ctree failed\n");
+		printk(KERN_CRIT "btrfs: open_ctree failed\n");
 		return PTR_ERR(tree_root);
 	}
 	sb->s_fs_info = tree_root;