aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJosef Bacik <jbacik@fusionio.com>2012-08-02 10:23:59 -0400
committerChris Mason <chris.mason@oracle.com>2012-08-28 16:53:29 -0400
commit99f5944b8477914406173b47b4f261356286730b (patch)
treea2b3037ad77b3841467d9e7ff4b0dde3ea2eb380 /fs
parentaa9ddcd4b5557102fa25695c11904f249b4dec49 (diff)
Btrfs: do not strdup non existent strings
When we close devices we add back empty devices for some reason that escapes me. In the case of a missing dev we don't allocate an rcu_string for it's name, so check to see if the device has a name and if it doesn't don't bother strdup()'ing it. Thanks, Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/volumes.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index b8708f994e6..3b394503bd4 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -569,9 +569,11 @@ static int __btrfs_close_devices(struct btrfs_fs_devices *fs_devices)
569 memcpy(new_device, device, sizeof(*new_device)); 569 memcpy(new_device, device, sizeof(*new_device));
570 570
571 /* Safe because we are under uuid_mutex */ 571 /* Safe because we are under uuid_mutex */
572 name = rcu_string_strdup(device->name->str, GFP_NOFS); 572 if (device->name) {
573 BUG_ON(device->name && !name); /* -ENOMEM */ 573 name = rcu_string_strdup(device->name->str, GFP_NOFS);
574 rcu_assign_pointer(new_device->name, name); 574 BUG_ON(device->name && !name); /* -ENOMEM */
575 rcu_assign_pointer(new_device->name, name);
576 }
575 new_device->bdev = NULL; 577 new_device->bdev = NULL;
576 new_device->writeable = 0; 578 new_device->writeable = 0;
577 new_device->in_fs_metadata = 0; 579 new_device->in_fs_metadata = 0;