btrfs-progs: dump-super: switch to common message helpers
authorDavid Sterba <dsterba@suse.com>
Wed, 7 Sep 2016 13:16:31 +0000 (15:16 +0200)
committerDavid Sterba <dsterba@suse.com>
Mon, 3 Oct 2016 09:33:15 +0000 (11:33 +0200)
Signed-off-by: David Sterba <dsterba@suse.com>
cmds-inspect-dump-super.c

index 0ae740a..d5d394a 100644 (file)
@@ -103,8 +103,8 @@ static void print_sys_chunk_array(struct btrfs_super_block *sb)
                        print_chunk(buf, chunk);
                        num_stripes = btrfs_chunk_num_stripes(buf, chunk);
                        if (!num_stripes) {
-                               printk(
-           "ERROR: invalid number of stripes %u in sys_array at offset %u\n",
+                               error(
+                       "invalid number of stripes %u in sys_array at offset %u",
                                        num_stripes, cur_offset);
                                break;
                        }
@@ -112,8 +112,7 @@ static void print_sys_chunk_array(struct btrfs_super_block *sb)
                        if (cur_offset + len > array_size)
                                goto out_short_read;
                } else {
-                       printk(
-               "ERROR: unexpected item type %u in sys_array at offset %u\n",
+                       error("unexpected item type %u in sys_array at offset %u",
                                (u32)key.type, cur_offset);
                        break;
                }
@@ -129,7 +128,7 @@ out:
        return;
 
 out_short_read:
-       printk("ERROR: sys_array too short to read %u bytes at offset %u\n",
+       error("sys_array too short to read %u bytes at offset %u",
                        len, cur_offset);
        free(buf);
 }