All of lore.kernel.org
 help / color / mirror / Atom feed
From: Boris Ostrovsky <boris.ostrovsky@oracle.com>
To: Jan Beulich <JBeulich@suse.com>
Cc: tim@xen.org, sstabellini@kernel.org, wei.liu2@citrix.com,
	George.Dunlap@eu.citrix.com, andrew.cooper3@citrix.com,
	ian.jackson@eu.citrix.com, xen-devel@lists.xen.org
Subject: Re: [PATCH v2 6/9] spinlock: Introduce spin_lock_cb()
Date: Tue, 18 Apr 2017 08:32:11 -0400	[thread overview]
Message-ID: <89bf1b3a-5238-fcf5-c96d-8b4c4805edd1@oracle.com> (raw)
In-Reply-To: <58F5D30502000078001515EC@prv-mh.provo.novell.com>

On 04/18/2017 02:49 AM, Jan Beulich wrote:
>>>> On 13.04.17 at 18:55, <boris.ostrovsky@oracle.com> wrote:
>> On 04/13/2017 11:46 AM, Jan Beulich wrote:
>>>>>> On 03.04.17 at 18:50, <boris.ostrovsky@oracle.com> wrote:
>>>> While waiting for a lock we may want to periodically run some
>>>> code. We could use spin_trylock() but since it doesn't take lock
>>>> ticket it may take a long time until the lock is taken.
>>>>
>>>> Add spin_lock_cb() that allows us to execute a callback while waiting.
>>> You don't add any user(s) of this new interface and you also don't
>>> outline under what conditions you think using this might be a good
>>> idea. On that basis I don't think this makes much sense. I am
>>> particularly worried of undue latencies use of this function may
>>> incur.
>> There is (currently) only one user of this interface and it is
>> introduced in the next patch.
>>
>> If you don't think explanation above is sufficient I can add
>>
>>     "This code may, for example, allow the caller to release resources
>>       held by it that are no longer needed in the critical section protected
>>       by the lock."
>>
>> after the first sentence.
>>
>> As for latency, the fast path is not affected, it's only if the lock is
>> already taken do we make the callback.
> That's a rather relevant aspect, which I think needs calling out
> explicitly. As you may have noticed, my initial understanding of
> the basic idea here was that the callback would be invoked while
> spinning (i.e. to use to spinning time to do something useful),
> not while holding the lock.

The callback *is* invoked when we are spinning waiting for the lock. I
probably should have said "only if the lock is already taken by someone
else". However, on the fast path, where noone is holding the lock and
the caller can grab it right away, the callback is not invoked.

-boris




_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

  reply	other threads:[~2017-04-18 12:32 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-03 16:50 [PATCH v2 0/9] Memory scrubbing from idle loop Boris Ostrovsky
2017-04-03 16:50 ` [PATCH v2 1/9] mm: Separate free page chunk merging into its own routine Boris Ostrovsky
2017-04-04 11:16   ` Jan Beulich
2017-04-04 13:48     ` Boris Ostrovsky
2017-04-04 14:01       ` Jan Beulich
2017-04-04 14:23         ` Boris Ostrovsky
2017-04-03 16:50 ` [PATCH v2 2/9] mm: Place unscrubbed pages at the end of pagelist Boris Ostrovsky
2017-04-04 14:46   ` Jan Beulich
2017-04-04 15:14     ` Boris Ostrovsky
2017-04-04 15:29       ` Jan Beulich
2017-04-04 15:39         ` Boris Ostrovsky
2017-04-04 15:50           ` Jan Beulich
2017-04-04 16:22             ` Boris Ostrovsky
2017-04-03 16:50 ` [PATCH v2 3/9] mm: Scrub pages in alloc_heap_pages() if needed Boris Ostrovsky
2017-04-03 16:50 ` [PATCH v2 4/9] mm: Scrub memory from idle loop Boris Ostrovsky
2017-04-12 16:11   ` Jan Beulich
2017-04-03 16:50 ` [PATCH v2 5/9] mm: Do not discard already-scrubbed pages softirqs are pending Boris Ostrovsky
2017-04-13 15:41   ` Jan Beulich
2017-04-13 16:46     ` Boris Ostrovsky
2017-04-03 16:50 ` [PATCH v2 6/9] spinlock: Introduce spin_lock_cb() Boris Ostrovsky
2017-04-13 15:46   ` Jan Beulich
2017-04-13 16:55     ` Boris Ostrovsky
2017-04-18  6:49       ` Jan Beulich
2017-04-18 12:32         ` Boris Ostrovsky [this message]
2017-04-18 12:43           ` Jan Beulich
2017-04-18 13:14             ` Boris Ostrovsky
2017-04-03 16:50 ` [PATCH v2 7/9] mm: Keep pages available for allocation while scrubbing Boris Ostrovsky
2017-04-13 15:59   ` Jan Beulich
2017-04-03 16:50 ` [PATCH v2 8/9] mm: Print number of unscrubbed pages in 'H' debug handler Boris Ostrovsky
2017-04-03 16:50 ` [PATCH v2 9/9] mm: Make sure pages are scrubbed Boris Ostrovsky
2017-04-04 15:21 ` [PATCH v2 0/9] Memory scrubbing from idle loop George Dunlap

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=89bf1b3a-5238-fcf5-c96d-8b4c4805edd1@oracle.com \
    --to=boris.ostrovsky@oracle.com \
    --cc=George.Dunlap@eu.citrix.com \
    --cc=JBeulich@suse.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=ian.jackson@eu.citrix.com \
    --cc=sstabellini@kernel.org \
    --cc=tim@xen.org \
    --cc=wei.liu2@citrix.com \
    --cc=xen-devel@lists.xen.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.