From: Anand Jain <anand.jain@oracle.com>
To: dsterba@suse.cz, David Sterba <dsterba@suse.com>,
linux-btrfs@vger.kernel.org
Subject: Re: [PATCH 3/6] btrfs: introduce try-lock semantics for exclusive op start
Date: Sat, 29 May 2021 21:48:46 +0800 [thread overview]
Message-ID: <e17818ca-aef9-36b9-7677-cc49f24ea21e@oracle.com> (raw)
In-Reply-To: <20210528123041.GA14136@suse.cz>
On 28/05/2021 20:30, David Sterba wrote:
> On Thu, May 27, 2021 at 03:43:46PM +0800, Anand Jain wrote:
>> On 21/05/2021 20:06, David Sterba wrote:
>> Nit:
>> This function implements a conditional lock. But the function name
>> misleads to some operation similar to spin_trylock() or
>> mutex_trylock(). How about btrfs_exclop_start_cond_lock() instead?
>
> The semantics is same as spin_trylock so it's named like it. Try lock is
> a conditional lock so I would not want to cause confusion by using
> another naming scheme.
>
> https://elixir.bootlin.com/linux/latest/source/include/linux/spinlock_api_smp.h#L86
>
> static inline int __raw_spin_trylock(raw_spinlock_t *lock)
> {
> preempt_disable();
> if (do_raw_spin_trylock(lock)) {
> spin_acquire(&lock->dep_map, 0, 1, _RET_IP_);
> return 1;
> }
> preempt_enable();
> return 0;
> }
>
> bool btrfs_exclop_start_try_lock(struct btrfs_fs_info *fs_info,
> enum btrfs_exclusive_operation type)
> {
> spin_lock(&fs_info->super_lock);
> if (fs_info->exclusive_operation == type)
> return true;
>
> spin_unlock(&fs_info->super_lock);
> return false;
> }
>
> The code flow is the same.
>
Oh. Ok, now I understand your POV.
I looked up the document to check what it says, and it matched with
my understanding too, as below.
https://www.kernel.org/doc/htmldocs/kernel-locking/trylock-functions.html
-----
::
They can be used if you need no access to the data protected with the
lock when some other thread is holding the lock.
::
----
Mainly ...trylocks are non-blocking/non-waiting locks.
However, btrfs_exclop_start_try_lock() can be blocking.
But as this is trivial should be ok. Thanks for clarifying.
- Anand
next prev parent reply other threads:[~2021-05-29 13:49 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-21 12:06 [PATCH 0/6] Support resize and device delete cancel ops David Sterba
2021-05-21 12:06 ` [PATCH 1/6] btrfs: protect exclusive_operation by super_lock David Sterba
2021-05-21 13:37 ` Josef Bacik
2021-05-21 12:06 ` [PATCH 2/6] btrfs: add cancelable chunk relocation support David Sterba
2021-05-21 13:21 ` Josef Bacik
2021-05-26 22:56 ` David Sterba
2021-06-16 13:54 ` Filipe Manana
2021-06-16 13:55 ` Filipe Manana
2021-06-16 15:53 ` David Sterba
2021-06-16 15:58 ` [PATCH v2] btrfs: add cancellable " David Sterba
2021-06-17 9:18 ` Filipe Manana
2021-05-21 12:06 ` [PATCH 3/6] btrfs: introduce try-lock semantics for exclusive op start David Sterba
2021-05-21 13:38 ` Josef Bacik
2021-05-27 7:43 ` Anand Jain
2021-05-28 12:30 ` David Sterba
2021-05-29 13:48 ` Anand Jain [this message]
2021-05-31 18:23 ` David Sterba
2021-05-21 12:06 ` [PATCH 4/6] btrfs: add wrapper for conditional start of exclusive operation David Sterba
2021-05-21 13:29 ` Josef Bacik
2021-05-21 16:45 ` David Sterba
2021-05-26 22:24 ` David Sterba
2021-05-21 12:06 ` [PATCH 5/6] btrfs: add cancelation to resize David Sterba
2021-05-21 13:38 ` Josef Bacik
2021-05-21 12:06 ` [PATCH 6/6] btrfs: add device delete cancel David Sterba
2021-05-21 13:38 ` Josef Bacik
2021-05-21 12:06 ` [PATCH 1/2] btrfs-progs: device remove: add support for cancel David Sterba
2021-05-21 12:06 ` [PATCH 2/2] btrfs-progs: fi resize: " David Sterba
2021-12-14 14:49 ` [PATCH 0/6] Support resize and device delete cancel ops Anand Jain
2021-12-15 15:13 ` David Sterba
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=e17818ca-aef9-36b9-7677-cc49f24ea21e@oracle.com \
--to=anand.jain@oracle.com \
--cc=dsterba@suse.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).