]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
btrfs: add missing break in btrfs_print_leaf()
authorEric Sandeen <sandeen@redhat.com>
Thu, 31 Jan 2013 00:54:57 +0000 (00:54 +0000)
committerJosef Bacik <jbacik@fusionio.com>
Wed, 20 Feb 2013 17:59:20 +0000 (12:59 -0500)
I don't think that BTRFS_DEV_EXTENT_KEY is supposed
to fall through to BTRFS_DEV_STATS_KEY ...

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
fs/btrfs/print-tree.c

index 50d95fd190a5932e165e9331313ca3e302635b5d..920957ecb27ee3761f9ee59f006a880884a3b882 100644 (file)
@@ -294,6 +294,7 @@ void btrfs_print_leaf(struct btrfs_root *root, struct extent_buffer *l)
                               btrfs_dev_extent_chunk_offset(l, dev_extent),
                               (unsigned long long)
                               btrfs_dev_extent_length(l, dev_extent));
+                       break;
                case BTRFS_DEV_STATS_KEY:
                        printk(KERN_INFO "\t\tdevice stats\n");
                        break;