diff options
author | David Sterba <dsterba@suse.com> | 2020-10-27 15:54:08 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2020-12-08 15:53:50 +0100 |
commit | 387824afd7210376a577b3c3e2f74618e3ef43a4 (patch) | |
tree | 0e2ad7622bfe938570b01a53e0cd4b870d72d2cd /fs/btrfs/disk-io.c | |
parent | ecfdc08b8cc65d737eebc26a1ee1875a097fd6a0 (diff) | |
download | linux-387824afd7210376a577b3c3e2f74618e3ef43a4.tar.gz linux-387824afd7210376a577b3c3e2f74618e3ef43a4.tar.bz2 linux-387824afd7210376a577b3c3e2f74618e3ef43a4.zip |
btrfs: use the right number of levels for lockdep keysets
BTRFS_MAX_LEVEL is 8 and the keyset table is supposed to have a key for
each level, but we'll never have more than 8 levels. The values passed
to btrfs_set_buffer_lockdep_class are always derived from a valid extent
buffer. Set the array sizes to the right value.
Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/disk-io.c')
-rw-r--r-- | fs/btrfs/disk-io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 646dde5883a6..c524be53279e 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c @@ -153,8 +153,8 @@ struct async_submit_bio { static struct btrfs_lockdep_keyset { u64 id; /* root objectid */ const char *name_stem; /* lock name stem */ - char names[BTRFS_MAX_LEVEL + 1][20]; - struct lock_class_key keys[BTRFS_MAX_LEVEL + 1]; + char names[BTRFS_MAX_LEVEL][20]; + struct lock_class_key keys[BTRFS_MAX_LEVEL]; } btrfs_lockdep_keysets[] = { { .id = BTRFS_ROOT_TREE_OBJECTID, .name_stem = "root" }, { .id = BTRFS_EXTENT_TREE_OBJECTID, .name_stem = "extent" }, |