From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: Stefan Hajnoczi <stefanha@redhat.com>, qemu-devel@nongnu.org
Cc: Fam Zheng <fam@euphon.net>,
qemu-stable@nongnu.org, qemu-block@nongnu.org
Subject: Re: [PATCH 1/2] fdmon-poll: reset npfd when upgrading to fdmon-epoll
Date: Fri, 21 Aug 2020 15:54:55 +0200 [thread overview]
Message-ID: <a82aae63-3db8-b83d-0131-8216420577a3@redhat.com> (raw)
In-Reply-To: <20200821101252.203056-2-stefanha@redhat.com>
On 8/21/20 12:12 PM, Stefan Hajnoczi wrote:
> npfd keeps track of how many pollfds are currently being monitored. It
> must be reset to 0 when fdmon_poll_wait() returns.
>
> When npfd reaches a treshold we switch to fdmon-epoll because it scales
> better.
>
> This patch resets npfd in the case where we switch to fdmon-epoll.
> Forgetting to do so results in the following assertion failure:
>
> util/fdmon-poll.c:65: fdmon_poll_wait: Assertion `npfd == 0' failed.
>
> Buglink: https://bugzilla.redhat.com/show_bug.cgi?id=1869952
> Fixes: 1f050a4690f62a1e7dabc4f44141e9f762c3769f ("aio-posix: extract ppoll(2) and epoll(7) fd monitoring")
> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
> ---
> util/fdmon-poll.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/util/fdmon-poll.c b/util/fdmon-poll.c
> index 488067b679..5fe3b47865 100644
> --- a/util/fdmon-poll.c
> +++ b/util/fdmon-poll.c
> @@ -73,6 +73,7 @@ static int fdmon_poll_wait(AioContext *ctx, AioHandlerList *ready_list,
>
> /* epoll(7) is faster above a certain number of fds */
> if (fdmon_epoll_try_upgrade(ctx, npfd)) {
> + npfd = 0; /* we won't need pollfds[], reset npfd */
> return ctx->fdmon_ops->wait(ctx, ready_list, timeout);
> }
>
>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
next prev parent reply other threads:[~2020-08-21 13:56 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-21 10:12 [PATCH 0/2] fdmon-poll: reset npfd when upgrading to fdmon-epoll Stefan Hajnoczi
2020-08-21 10:12 ` [PATCH 1/2] " Stefan Hajnoczi
2020-08-21 13:54 ` Philippe Mathieu-Daudé [this message]
2020-08-21 10:12 ` [PATCH 2/2] tests: add test-fdmon-epoll Stefan Hajnoczi
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=a82aae63-3db8-b83d-0131-8216420577a3@redhat.com \
--to=philmd@redhat.com \
--cc=fam@euphon.net \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-stable@nongnu.org \
--cc=stefanha@redhat.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;
as well as URLs for NNTP newsgroup(s).