btrfs: tree-check: reduce stack consumption in check_dir_item
authorDavid Sterba <dsterba@suse.com>
Wed, 10 Jan 2018 14:13:07 +0000 (15:13 +0100)
committerDavid Sterba <dsterba@suse.com>
Mon, 22 Jan 2018 15:08:21 +0000 (16:08 +0100)
I've noticed that the updated item checker stack consumption increased
dramatically in 542f5385e20cf97447 ("btrfs: tree-checker: Add checker
for dir item")

tree-checker.c:check_leaf                    +552 (176 -> 728)

The array is 255 bytes long, dynamic allocation would slow down the
sanity checks so it's more reasonable to keep it on-stack. Moving the
variable to the scope of use reduces the stack usage again

tree-checker.c:check_leaf                    -264 (728 -> 464)

Reviewed-by: Josef Bacik <jbacik@fb.com>
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/tree-checker.c

index 7c55e3ba5a6c86f70aaa8a2b9d1ac3d469075f78..c3c8d48f6618ef0738824f480955db1f7cffc00d 100644 (file)
@@ -259,7 +259,6 @@ static int check_dir_item(struct btrfs_root *root,
 
        di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
        while (cur < item_size) {
-               char namebuf[max(BTRFS_NAME_LEN, XATTR_NAME_MAX)];
                u32 name_len;
                u32 data_len;
                u32 max_name_len;
@@ -342,6 +341,8 @@ static int check_dir_item(struct btrfs_root *root,
                 */
                if (key->type == BTRFS_DIR_ITEM_KEY ||
                    key->type == BTRFS_XATTR_ITEM_KEY) {
+                       char namebuf[max(BTRFS_NAME_LEN, XATTR_NAME_MAX)];
+
                        read_extent_buffer(leaf, namebuf,
                                        (unsigned long)(di + 1), name_len);
                        name_hash = btrfs_name_hash(namebuf, name_len);