From: Anand Jain <anand.jain@oracle.com>
To: dsterba@suse.cz, linux-btrfs@vger.kernel.org
Subject: Re: [PATCH 0/15] Review uuid_mutex usage
Date: Tue, 22 May 2018 17:27:23 +0800 [thread overview]
Message-ID: <a697a883-3537-37f1-5628-3485bd45b22d@oracle.com> (raw)
In-Reply-To: <20180515163303.GV6649@twin.jikos.cz>
On 05/16/2018 12:33 AM, David Sterba wrote:
> On Thu, Apr 12, 2018 at 10:29:23AM +0800, Anand Jain wrote:
>> uuid_mutex lock is not a per-fs lock but a global lock. The main aim of
>> this patch-set is to critically review the usage of this lock, and delete
>> the unnecessary once. By doing this we improve the concurrency of
>> device operations across multiple btrfs filesystems is in the system.
>>
>> patch 1: Was sent before, I am including it here, as its about uuid_mutex.
>>
>> patch 2-9: Are cleanup and or preparatory patches.
>>
>> patch 10-14: Drops the uuid_mutex and makes sure there is enough lock,
>> as discussed in the patch change log.
>>
>> patch 15: A generic cleanup patch around functions in the same context.
>>
>> These patches are on top of
>> https://github.com/kdave/btrfs-devel.git remove-volume-mutex
>> And it will be a good idea to go along with the kill-volume-mutex patches.
>>
>> This is tested with xfstests and there are no _new_ regression. And I am
>> trying to understand the old regressions, and notice that they are
>> inconsistent.
>>
>> Anand Jain (15):
>> btrfs: optimize move uuid_mutex closer to the critical section
>> btrfs: rename struct btrfs_fs_devices::list
>> btrfs: cleanup __btrfs_open_devices() drop head pointer
>> btrfs: rename __btrfs_close_devices to close_fs_devices
>> btrfs: rename __btrfs_open_devices to open_fs_devices
>> btrfs: cleanup find_device() drop list_head pointer
>> btrfs: cleanup btrfs_rm_device() promote fs_devices pointer
>> btrfs: cleanup btrfs_rm_device() use cur_devices
>> btrfs: uuid_mutex in read_chunk_tree, add a comment
>> btrfs: drop uuid_mutex in btrfs_free_extra_devids()
>> btrfs: drop uuid_mutex in btrfs_open_devices()
>> btrfs: drop uuid_mutex in close_fs_devices()
>> btrfs: drop uuid_mutex in btrfs_dev_replace_finishing()
>> btrfs: drop uuid_mutex in btrfs_destroy_dev_replace_tgtdev()
>> btrfs: cleanup btrfs_destroy_dev_replace_tgtdev() localize
>> btrfs_fs_devices
>
> Patches 10 and 12 haven't been merged, the rest is now in misc-next.
> Testing hasn't revealed any problems related to the uuid/device locks
> but as said before we don't have stress tests.
Our test cases are sequential. We need same device related test cases
in a concurrent manner.
Just for experiment, I ran two instances of xfstests concurrently (on a
separate set of test and scratch devices), they ran fine with these
patches, not a perfect solution though. We need to think of better
ways.
The main challenge with testing concurrency / racing is how to
synchronize racing threads.
Thanks, Anand
> --
> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
prev parent reply other threads:[~2018-05-22 9:24 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-12 2:29 [PATCH 0/15] Review uuid_mutex usage Anand Jain
2018-04-12 2:29 ` [PATCH 01/15] btrfs: optimize move uuid_mutex closer to the critical section Anand Jain
2018-04-12 2:29 ` [PATCH 02/15] btrfs: rename struct btrfs_fs_devices::list Anand Jain
2018-04-12 2:29 ` [PATCH 03/15] btrfs: cleanup __btrfs_open_devices() drop head pointer Anand Jain
2018-04-12 2:29 ` [PATCH 04/15] btrfs: rename __btrfs_close_devices to close_fs_devices Anand Jain
2018-04-12 2:29 ` [PATCH 05/15] btrfs: rename __btrfs_open_devices to open_fs_devices Anand Jain
2018-04-12 2:29 ` [PATCH 06/15] btrfs: cleanup find_device() drop list_head pointer Anand Jain
2018-04-12 2:29 ` [PATCH 07/15] btrfs: cleanup btrfs_rm_device() promote fs_devices pointer Anand Jain
2018-04-12 2:29 ` [PATCH 08/15] btrfs: cleanup btrfs_rm_device() use cur_devices Anand Jain
2018-04-12 2:29 ` [PATCH 09/15] btrfs: uuid_mutex in read_chunk_tree, add a comment Anand Jain
2018-04-12 2:29 ` [PATCH 10/15] btrfs: drop uuid_mutex in btrfs_free_extra_devids() Anand Jain
2018-05-15 16:26 ` David Sterba
2018-05-22 9:11 ` Anand Jain
2018-05-23 2:54 ` [PATCH v3] " Anand Jain
2018-05-25 15:55 ` David Sterba
2018-05-28 10:14 ` [PATCH v4] " Anand Jain
2018-04-12 2:29 ` [PATCH 11/15] btrfs: drop uuid_mutex in btrfs_open_devices() Anand Jain
2018-04-12 2:29 ` [PATCH 12/15] btrfs: drop uuid_mutex in close_fs_devices() Anand Jain
2018-05-15 16:30 ` David Sterba
2018-05-22 9:12 ` Anand Jain
2018-04-12 2:29 ` [PATCH 13/15] btrfs: drop uuid_mutex in btrfs_dev_replace_finishing() Anand Jain
2018-04-12 2:29 ` [PATCH 14/15] btrfs: drop uuid_mutex in btrfs_destroy_dev_replace_tgtdev() Anand Jain
2018-04-12 2:29 ` [PATCH 15/15] btrfs: cleanup btrfs_destroy_dev_replace_tgtdev() localize btrfs_fs_devices Anand Jain
2018-04-16 19:52 ` [PATCH 0/15] Review uuid_mutex usage David Sterba
2018-04-18 9:56 ` [PATCH] btrfs: update uuid_mutex and device_list_mutex comments Anand Jain
2018-04-24 15:48 ` David Sterba
2018-05-16 5:09 ` Anand Jain
2018-04-19 15:22 ` [PATCH 0/15] Review uuid_mutex usage David Sterba
2018-05-15 16:33 ` David Sterba
2018-05-22 9:27 ` Anand Jain [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=a697a883-3537-37f1-5628-3485bd45b22d@oracle.com \
--to=anand.jain@oracle.com \
--cc=dsterba@suse.cz \
--cc=linux-btrfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).