From: Waiman Long Date: Tue, 16 Jun 2020 15:31:59 +0000 (-0400) Subject: btrfs: use kfree() in btrfs_ioctl_get_subvol_info() X-Git-Tag: v5.8-rc3~44^2 X-Git-Url: https://repo.jachan.dev/linux.git/commitdiff_plain/b091f7fede97cc64f7aaad3eeb37965aebee3082 btrfs: use kfree() in btrfs_ioctl_get_subvol_info() In btrfs_ioctl_get_subvol_info(), there is a classic case where kzalloc() was incorrectly paired with kzfree(). According to David Sterba, there isn't any sensitive information in the subvol_info that needs to be cleared before freeing. So kzfree() isn't really needed, use kfree() instead. Signed-off-by: Waiman Long Reviewed-by: David Sterba Signed-off-by: David Sterba --- diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c index 168deb8ef68a..e8f7c5f00894 100644 --- a/fs/btrfs/ioctl.c +++ b/fs/btrfs/ioctl.c @@ -2692,7 +2692,7 @@ out: btrfs_put_root(root); out_free: btrfs_free_path(path); - kzfree(subvol_info); + kfree(subvol_info); return ret; }