All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: "Marc-André Lureau" <marcandre.lureau@redhat.com>
Cc: qemu-devel@nongnu.org, Paolo Bonzini <pbonzini@redhat.com>,
	"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
	peterx@redhat.com
Subject: Re: [Qemu-devel] [PATCH v3 3/6] char: add a QEMU_CHAR_FEATURE_GCONTEXT flag
Date: Wed, 05 Dec 2018 09:37:21 +0100	[thread overview]
Message-ID: <87d0qg1i9q.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <20181204131802.16885-4-marcandre.lureau@redhat.com> ("Marc-André Lureau"'s message of "Tue, 4 Dec 2018 17:17:59 +0400")

Marc-André Lureau <marcandre.lureau@redhat.com> writes:

> The feature should be set if the chardev is able to switch
> GMainContext. Callers that want to put a chardev in a different thread
> context can/should check this capability. Otherwise, print an
> error (arguably, it may assert instead).

Really?  I think you do assert instead.  Hmm, misunderstanding; this
isn't about what the patch does, it's about what callers should do.
Perhaps:

  QEMU_CHAR_FEATURE_GCONTEXT declares the character device can switch
  GMainContext.

  Assert we don't switch context when the character device doesn't
  provide this feature.  Character device users must not violate this
  restriction.  In particular, user configurations that violate them
  must be rejected.

This leads me to my next question: is it currently possible to violate
this restriction and trip the new assertion?

>
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
>  include/chardev/char.h |  3 +++
>  chardev/char.c         | 11 +++++++++++
>  2 files changed, 14 insertions(+)
>
> diff --git a/include/chardev/char.h b/include/chardev/char.h
> index 7becd8c80c..014566c3de 100644
> --- a/include/chardev/char.h
> +++ b/include/chardev/char.h
> @@ -47,6 +47,9 @@ typedef enum {
>      QEMU_CHAR_FEATURE_FD_PASS,
>      /* Whether replay or record mode is enabled */
>      QEMU_CHAR_FEATURE_REPLAY,
> +    /* Whether the gcontext can be changed after calling
> +     * qemu_chr_be_update_read_handlers() */
> +    QEMU_CHAR_FEATURE_GCONTEXT,
>  
>      QEMU_CHAR_FEATURE_LAST,
>  } ChardevFeature;
> diff --git a/chardev/char.c b/chardev/char.c
> index 152dde5327..123b566cba 100644
> --- a/chardev/char.c
> +++ b/chardev/char.c
> @@ -196,6 +196,8 @@ void qemu_chr_be_update_read_handlers(Chardev *s,
>      s->gcontext = context;
>      if (cc->chr_update_read_handler) {
>          cc->chr_update_read_handler(s);
> +    } else if (s->gcontext) {
> +        g_assert_not_reached();
>      }

Hmm.

cc->chr_update_read_handler is true iff QEMU_CHAR_FEATURE_GCONTEXT.
Therefore, the assertion really asserts "context may be non-null only
when we have QEMU_CHAR_FEATURE_GCONTEXT".  Let's make that clearer:

       assert(qemu_chr_has_feature(s, QEMU_CHAR_FEATURE_GCONTEXT)
              || !context);
       s->gcontext = context;
       if (cc->chr_update_read_handler) {
           cc->chr_update_read_handler(s);
       }

>  }
>  
> @@ -240,6 +242,15 @@ static void char_init(Object *obj)
>  
>      chr->logfd = -1;
>      qemu_mutex_init(&chr->chr_write_lock);
> +
> +    /*
> +     * Assume if chr_update_read_handler is implemented it will
> +     * take the updated gcontext into account.
> +     */
> +    if (CHARDEV_GET_CLASS(chr)->chr_update_read_handler) {
> +        qemu_chr_set_feature(chr, QEMU_CHAR_FEATURE_GCONTEXT);
> +    }
> +
>  }
>  
>  static int null_chr_write(Chardev *chr, const uint8_t *buf, int len)

  reply	other threads:[~2018-12-05  8:37 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-04 13:17 [Qemu-devel] [PATCH v3 0/6] monitor: misc fixes Marc-André Lureau
2018-12-04 13:17 ` [Qemu-devel] [PATCH v3 1/6] monitor: inline ambiguous helper functions Marc-André Lureau
2018-12-04 13:17 ` [Qemu-devel] [PATCH v3 2/6] monitor: accept chardev input from iothread Marc-André Lureau
2018-12-05  8:17   ` Markus Armbruster
2018-12-05  8:41     ` Marc-André Lureau
2018-12-04 13:17 ` [Qemu-devel] [PATCH v3 3/6] char: add a QEMU_CHAR_FEATURE_GCONTEXT flag Marc-André Lureau
2018-12-05  8:37   ` Markus Armbruster [this message]
2018-12-04 13:18 ` [Qemu-devel] [PATCH v3 4/6] monitor: check if chardev can switch gcontext for OOB Marc-André Lureau
2018-12-05  8:42   ` Markus Armbruster
2018-12-05  8:54     ` Marc-André Lureau
2018-12-05  9:15       ` Markus Armbruster
2018-12-04 13:18 ` [Qemu-devel] [PATCH v3 5/6] monitor: prevent inserting new monitors after cleanup Marc-André Lureau
2018-12-05  8:45   ` Markus Armbruster
2018-12-04 13:18 ` [Qemu-devel] [PATCH v3 6/6] monitor: avoid potential dead-lock when cleaning up Marc-André Lureau
2018-12-05  8:46   ` Markus Armbruster
2018-12-05 12:37 ` [Qemu-devel] [PATCH v3 0/6] monitor: misc fixes Markus Armbruster

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=87d0qg1i9q.fsf@dusky.pond.sub.org \
    --to=armbru@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=marcandre.lureau@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=peterx@redhat.com \
    --cc=qemu-devel@nongnu.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.