]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Btrfs: Print key type in decimal everywhere
authorStefan Behrens <sbehrens@giantdisaster.de>
Tue, 16 Jul 2013 13:38:33 +0000 (15:38 +0200)
committerChris Mason <chris.mason@fusionio.com>
Sun, 1 Sep 2013 11:57:40 +0000 (07:57 -0400)
This is confusing, sometimes the key type is printed in hex (without
a leading "0x" which makes things even more complicated), sometimes
in decimal...
Change it to be in decimal everywhere.

Signed-off-by: Stefan Behrens <sbehrens@giantdisaster.de>
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
fs/btrfs/print-tree.c

index dc0024f17c1f5a1a671ab4809d6ca5ae250464f4..fe7bf4a12568df191bf913542b4acd04672fadac 100644 (file)
@@ -95,7 +95,7 @@ static void print_extent_item(struct extent_buffer *eb, int slot)
                struct btrfs_tree_block_info *info;
                info = (struct btrfs_tree_block_info *)(ei + 1);
                btrfs_tree_block_key(eb, info, &key);
-               printk(KERN_INFO "\t\ttree block key (%llu %x %llu) "
+               printk(KERN_INFO "\t\ttree block key (%llu %u %llu) "
                       "level %d\n",
                       (unsigned long long)btrfs_disk_key_objectid(&key),
                       key.type,
@@ -183,7 +183,7 @@ void btrfs_print_leaf(struct btrfs_root *root, struct extent_buffer *l)
                item = btrfs_item_nr(l, i);
                btrfs_item_key_to_cpu(l, &key, i);
                type = btrfs_key_type(&key);
-               printk(KERN_INFO "\titem %d key (%llu %x %llu) itemoff %d "
+               printk(KERN_INFO "\titem %d key (%llu %u %llu) itemoff %d "
                       "itemsize %d\n",
                        i,
                        (unsigned long long)key.objectid, type,