]> git.itanic.dy.fi Git - linux-stable/commit
btrfs: allocate raid type kobjects dynamically
authorJeff Mahoney <jeffm@suse.com>
Tue, 27 May 2014 16:59:57 +0000 (12:59 -0400)
committerChris Mason <clm@fb.com>
Tue, 10 Jun 2014 00:21:01 +0000 (17:21 -0700)
commitc1895442be01c58449e3bf9272f22062a670e08f
tree8a09bb69c59dfdbcff5869cb82490487ec0bf86e
parent7e3ae33efad1490d01040f552ef50e58ed6376ca
btrfs: allocate raid type kobjects dynamically

We are currently allocating space_info objects in an array when we
allocate space_info. When a user does something like:

# btrfs balance start -mconvert=raid1 -dconvert=raid1 /mnt
# btrfs balance start -mconvert=single -dconvert=single /mnt -f
# btrfs balance start -mconvert=raid1 -dconvert=raid1 /

We can end up with memory corruption since the kobject hasn't
been reinitialized properly and the name pointer was left set.

The rationale behind allocating them statically was to avoid
creating a separate kobject container that just contained the
raid type. It used the index in the array to determine the index.

Ultimately, though, this wastes more memory than it saves in all
but the most complex scenarios and introduces kobject lifetime
questions.

This patch allocates the kobjects dynamically instead. Note that
we also remove the kobject_get/put of the parent kobject since
kobject_add and kobject_del do that internally.

Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Reported-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <clm@fb.com>
fs/btrfs/ctree.h
fs/btrfs/extent-tree.c
fs/btrfs/sysfs.c