linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RFC] don't background blkdev_put()
@ 2016-06-23 13:01 Anand Jain
  2016-07-08 14:56 ` David Sterba
  0 siblings, 1 reply; 2+ messages in thread
From: Anand Jain @ 2016-06-23 13:01 UTC (permalink / raw)
  To: linux-btrfs; +Cc: clm, dsterba

As of now we are calling blkdev_put() under call_rcu,
actually which isn't necessary. Unless I am missing
something. This is a try out patch to know the same.

Ran successfully the fstests.

This should be applied on top of recent other patches,
  [PATCH 1/2] btrfs: reorg btrfs_close_one_device()
  [PATCH v3 2/2] btrfs: make sure device is synced before return

Signed-off-by: Anand Jain <anand.jain@oracle.com>
---
 fs/btrfs/volumes.c | 28 +++++++++++++++++++++++-----
 1 file changed, 23 insertions(+), 5 deletions(-)

diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c
index e0ad29d6fe9a..63036702ea18 100644
--- a/fs/btrfs/volumes.c
+++ b/fs/btrfs/volumes.c
@@ -834,10 +834,6 @@ static void __free_device(struct work_struct *work)
 	struct btrfs_device *device;
 
 	device = container_of(work, struct btrfs_device, rcu_work);
-
-	if (device->bdev)
-		blkdev_put(device->bdev, device->mode);
-
 	rcu_string_free(device->name);
 	kfree(device);
 }
@@ -874,6 +870,8 @@ static void btrfs_close_one_device(struct btrfs_device *device)
 		sync_blockdev(device->bdev);
 		invalidate_bdev(device->bdev);
 	}
+	if (device->bdev)
+		blkdev_put(device->bdev, device->mode);
 
 	new_device = btrfs_alloc_device(NULL, &device->devid,
 					device->uuid);
@@ -1931,6 +1929,13 @@ int btrfs_rm_device(struct btrfs_root *root, char *device_path, u64 devid)
 		btrfs_sysfs_rm_device_link(root->fs_info->fs_devices, device);
 	}
 
+	if (device->bdev && device->writeable) {
+		sync_blockdev(device->bdev);
+		invalidate_bdev(device->bdev);
+	}
+	if (device->bdev)
+		blkdev_put(device->bdev, device->mode);
+
 	call_rcu(&device->rcu, free_device);
 
 	num_devices = btrfs_super_num_devices(root->fs_info->super_copy) - 1;
@@ -2024,6 +2029,13 @@ void btrfs_rm_dev_replace_free_srcdev(struct btrfs_fs_info *fs_info,
 		/* zero out the old super if it is writable */
 		btrfs_scratch_superblocks(srcdev->bdev, srcdev->name->str);
 	}
+
+	if (srcdev->bdev && srcdev->writeable) {
+		sync_blockdev(srcdev->bdev);
+		invalidate_bdev(srcdev->bdev);
+	}
+	if (srcdev->bdev)
+		blkdev_put(srcdev->bdev, srcdev->mode);
 	call_rcu(&srcdev->rcu, free_device);
 
 	/*
@@ -2079,6 +2091,12 @@ void btrfs_destroy_dev_replace_tgtdev(struct btrfs_fs_info *fs_info,
 	 * the device_list_mutex lock.
 	 */
 	btrfs_scratch_superblocks(tgtdev->bdev, tgtdev->name->str);
+	if (tgtdev->bdev && tgtdev->writeable) {
+		sync_blockdev(tgtdev->bdev);
+		invalidate_bdev(tgtdev->bdev);
+	}
+	if (tgtdev->bdev)
+		blkdev_put(tgtdev->bdev, tgtdev->mode);
 	call_rcu(&tgtdev->rcu, free_device);
 }
 
-- 
2.7.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH RFC] don't background blkdev_put()
  2016-06-23 13:01 [PATCH RFC] don't background blkdev_put() Anand Jain
@ 2016-07-08 14:56 ` David Sterba
  0 siblings, 0 replies; 2+ messages in thread
From: David Sterba @ 2016-07-08 14:56 UTC (permalink / raw)
  To: Anand Jain; +Cc: linux-btrfs, clm, dsterba

On Thu, Jun 23, 2016 at 09:01:53PM +0800, Anand Jain wrote:
> As of now we are calling blkdev_put() under call_rcu,
> actually which isn't necessary. Unless I am missing
> something. This is a try out patch to know the same.

Moving the blkdev_put after sync and invalidate, and out of the rcu
callback looks safe (and better) to me. Please create a helper for the
code that does

> +	if (device->bdev && device->writeable) {
> +		sync_blockdev(device->bdev);
> +		invalidate_bdev(device->bdev);
> +	}
> +	if (device->bdev)
> +		blkdev_put(device->bdev, device->mode);

It's repeated 3 times, justifies a helper.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-07-08 14:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-23 13:01 [PATCH RFC] don't background blkdev_put() Anand Jain
2016-07-08 14:56 ` David Sterba

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).