From: Stefan Hajnoczi <stefanha@redhat.com>
To: Peter Xu <peterx@redhat.com>
Cc: Stefan Hajnoczi <stefanha@gmail.com>,
qemu-devel@nongnu.org, pbonzini@redhat.com,
marcandre.lureau@redhat.com
Subject: Re: [Qemu-devel] [PATCH v2.1 3/3] chardev: introduce qemu_chr_timeout_add() and use
Date: Thu, 4 Jan 2018 09:57:00 +0000 [thread overview]
Message-ID: <20180104095700.GA10106@stefanha-x1.localdomain> (raw)
In-Reply-To: <20180104023158.GQ2557@xz-mi>
[-- Attachment #1: Type: text/plain, Size: 2964 bytes --]
On Thu, Jan 04, 2018 at 10:31:58AM +0800, Peter Xu wrote:
> On Wed, Jan 03, 2018 at 05:41:53PM +0000, Stefan Hajnoczi wrote:
> > On Wed, Jan 03, 2018 at 10:24:18AM +0800, Peter Xu wrote:
> > > It's a replacement of g_timeout_add[_seconds]() for chardevs. Chardevs
> > > now can have dedicated gcontext, we should always bind chardev tasks
> > > onto those gcontext rather than the default main context. Since there
> > > are quite a few of g_timeout_add[_seconds]() callers, a new function
> > > qemu_chr_timeout_add() is introduced.
> > >
> > > One thing to mention is that, terminal3270 is still always running on
> > > main gcontext. However let's convert that as well since it's still part
> > > of chardev codes and in case one day we'll miss that when we move it out
> > > of main gcontext too.
> > >
> > > Signed-off-by: Peter Xu <peterx@redhat.com>
> > > ---
> > >
> > > v2 -> v2.1: Sorry I forgot to do the move in char.h. Did it in this
> > > minor version.
> > >
> > > chardev/char-pty.c | 9 ++-------
> > > chardev/char-socket.c | 4 ++--
> > > chardev/char.c | 20 ++++++++++++++++++++
> > > hw/char/terminal3270.c | 7 ++++---
> > > include/chardev/char.h | 3 +++
> > > 5 files changed, 31 insertions(+), 12 deletions(-)
> > >
> > > diff --git a/chardev/char-pty.c b/chardev/char-pty.c
> > > index dd17b1b823..cbd8ac5eb7 100644
> > > --- a/chardev/char-pty.c
> > > +++ b/chardev/char-pty.c
> > > @@ -78,13 +78,8 @@ static void pty_chr_rearm_timer(Chardev *chr, int ms)
> > > s->timer_tag = 0;
> > > }
> > >
> > > - if (ms == 1000) {
> > > - name = g_strdup_printf("pty-timer-secs-%s", chr->label);
> > > - s->timer_tag = g_timeout_add_seconds(1, pty_chr_timer, chr);
> > > - } else {
> > > - name = g_strdup_printf("pty-timer-ms-%s", chr->label);
> > > - s->timer_tag = g_timeout_add(ms, pty_chr_timer, chr);
> > > - }
> > > + name = g_strdup_printf("pty-timer-ms-%s", chr->label);
> > > + s->timer_tag = qemu_chr_timeout_add(chr, ms, pty_chr_timer, chr);
> >
> > The label is user-visible. Why did you remove the seconds label format?
>
> It's used for g_source_set_name_by_id() below, and that's not
> user-visible AFAICT?
>
> I removed it because I thought it was not user visible and actually I
> didn't see a point on doing that. Please let me know if I made a
> mistake.
>
> >
> > Please either include justification in the commit description or avoid
> > spurious changes like this so reviewers don't need to worry about code
> > changes that are not essential.
>
> Yes. I can add this into commit message after confirmed with you on above.
You are right, the GSource name isn't visible (it's only used for
debugging). I was thinking of chr->label.
It's still helpful to mention that the ms == 1000 special case is not
user-visible in the commit description.
Thanks,
Stefan
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]
prev parent reply other threads:[~2018-01-04 9:57 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-03 2:14 [Qemu-devel] [PATCH v2 0/3] chardev: convert leftover glib APIs to use dedicate gcontext Peter Xu
2018-01-03 2:14 ` [Qemu-devel] [PATCH v2 1/3] chardev: use backend chr context when watch for fe Peter Xu
2018-01-03 2:14 ` [Qemu-devel] [PATCH v2 2/3] chardev: let g_idle_add() be with chardev gcontext Peter Xu
2018-01-03 17:41 ` Stefan Hajnoczi
2018-01-03 2:14 ` [Qemu-devel] [PATCH v2 3/3] chardev: introduce qemu_chr_timeout_add() and use Peter Xu
2018-01-03 2:24 ` [Qemu-devel] [PATCH v2.1 " Peter Xu
2018-01-03 10:12 ` Marc-André Lureau
2018-01-03 17:41 ` Stefan Hajnoczi
2018-01-04 2:31 ` Peter Xu
2018-01-04 9:57 ` Stefan Hajnoczi [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=20180104095700.GA10106@stefanha-x1.localdomain \
--to=stefanha@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@gmail.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).