summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/ctree.h
diff options
context:
space:
mode:
authorJeff Mahoney2018-02-16 04:59:47 +0100
committerDavid Sterba2018-03-01 16:15:36 +0100
commita8fd1f71749387c9a1053a83ff1c16287499a4e7 (patch)
tree23741329982b7387302eb9cae8ac3a60eb2fc07c /fs/btrfs/ctree.h
parentbtrfs: Fix use-after-free when cleaning up fs_devs with a single stale device (diff)
downloadkernel-qcow2-linux-a8fd1f71749387c9a1053a83ff1c16287499a4e7.tar.gz
kernel-qcow2-linux-a8fd1f71749387c9a1053a83ff1c16287499a4e7.tar.xz
kernel-qcow2-linux-a8fd1f71749387c9a1053a83ff1c16287499a4e7.zip
btrfs: use kvzalloc to allocate btrfs_fs_info
The srcu_struct in btrfs_fs_info scales in size with NR_CPUS. On kernels built with NR_CPUS=8192, this can result in kmalloc failures that prevent mounting. There is work in progress to try to resolve this for every user of srcu_struct but using kvzalloc will work around the failures until that is complete. As an example with NR_CPUS=512 on x86_64: the overall size of subvol_srcu is 3460 bytes, fs_info is 6496. Signed-off-by: Jeff Mahoney <jeffm@suse.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r--fs/btrfs/ctree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h
index 1a462ab85c49..0f521ba5f2f9 100644
--- a/fs/btrfs/ctree.h
+++ b/fs/btrfs/ctree.h
@@ -2974,7 +2974,7 @@ static inline void free_fs_info(struct btrfs_fs_info *fs_info)
kfree(fs_info->super_copy);
kfree(fs_info->super_for_commit);
security_free_mnt_opts(&fs_info->security_opts);
- kfree(fs_info);
+ kvfree(fs_info);
}
/* tree mod log functions from ctree.c */