From: mathieu.desnoyers@efficios.com (Mathieu Desnoyers)
Subject: [lttng-dev] [RFC] wfcqueue: allow defining CDS_WFCQ_WAIT_SLEEP to override `poll'
Date: Mon, 20 Aug 2018 15:47:10 -0400 (EDT) [thread overview]
Message-ID: <790477758.3063.1534794430198.JavaMail.zimbra@efficios.com> (raw)
In-Reply-To: <20180801185445.mcvkvxmhqm5hflrj@dcvr>
----- On Aug 1, 2018, at 2:54 PM, Eric Wong normalperson at yhbt.net wrote:
> Users may want to use alternative sleeping behavior instead of
> `poll'. Make CDS_WFCQ_WAIT_SLEEP a macro which may be defined
> before including wfcqueue.h.
>
> This alternative behavior could include logging, performing
> low-priority cleanup work, sleeping a shorter/longer interval
> or any combination of that.
>
> This will also make integration into glibc easier, as `poll'
> linkage causes conformance test failures even when relegated
> to an impossible code path:
> https://public-inbox.org/libc-alpha/20180801092626.jrwyrojfye4avcis at whir/
>
> Signed-off-by: Eric Wong <normalperson at yhbt.net>
> ---
> include/urcu/static/wfcqueue.h | 19 ++++++++++++++++++-
> 1 file changed, 18 insertions(+), 1 deletion(-)
>
> diff --git a/include/urcu/static/wfcqueue.h b/include/urcu/static/wfcqueue.h
> index 67ac05f..3f56493 100644
> --- a/include/urcu/static/wfcqueue.h
> +++ b/include/urcu/static/wfcqueue.h
> @@ -223,6 +223,23 @@ static inline bool _cds_wfcq_enqueue(cds_wfcq_head_ptr_t
> head,
> return ___cds_wfcq_append(head, tail, new_tail, new_tail);
> }
>
> +/*
> + * CDS_WFCQ_WAIT_SLEEP:
> + *
> + * By default, this sleeps for the given @msec milliseconds.
> + * This is a macro which LGPL users may #define themselves before
> + * including wfcqueue.h to override the default behavior (e.g.
> + * to log a warning or perform other background work).
> + */
> +#ifndef CDS_WFCQ_WAIT_SLEEP
> +#define CDS_WFCQ_WAIT_SLEEP(msec) ___cds_wfcq_wait_sleep((msec))
Removing the extra () around msec, they are not needed.
Otherwise, merged into liburcu master branch, thanks!
Mathieu
> +#endif
> +
> +static inline void ___cds_wfcq_wait_sleep(int msec)
> +{
> + (void) poll(NULL, 0, msec);
> +}
> +
> /*
> * ___cds_wfcq_busy_wait: adaptative busy-wait.
> *
> @@ -234,7 +251,7 @@ ___cds_wfcq_busy_wait(int *attempt, int blocking)
> if (!blocking)
> return 1;
> if (++(*attempt) >= WFCQ_ADAPT_ATTEMPTS) {
> - (void) poll(NULL, 0, WFCQ_WAIT); /* Wait for 10ms */
> + CDS_WFCQ_WAIT_SLEEP(WFCQ_WAIT); /* Wait for 10ms */
> *attempt = 0;
> } else {
> caa_cpu_relax();
> --
> EW
--
Mathieu Desnoyers
EfficiOS Inc.
http://www.efficios.com
prev parent reply other threads:[~2018-08-20 19:47 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-01 18:54 Eric Wong
2018-08-13 14:13 ` Mathieu Desnoyers
2018-08-17 20:31 ` Eric Wong
2018-08-20 19:48 ` Mathieu Desnoyers
2018-08-20 19:47 ` Mathieu Desnoyers [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=790477758.3063.1534794430198.JavaMail.zimbra@efficios.com \
--to=mathieu.desnoyers@efficios.com \
/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