qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Alex Bennée" <alex.bennee@linaro.org>
To: qemu-devel@nongnu.org
Cc: "Alex Bennée" <alex.bennee@linaro.org>,
	"Philippe Mathieu-Daudé" <philmd@linaro.org>,
	"Marc-André Lureau" <marcandre.lureau@redhat.com>,
	"Paolo Bonzini" <pbonzini@redhat.com>
Subject: [PULL 04/22] chardev: use bool for fe_is_open
Date: Fri, 12 Jan 2024 11:04:17 +0000	[thread overview]
Message-ID: <20240112110435.3801068-5-alex.bennee@linaro.org> (raw)
In-Reply-To: <20240112110435.3801068-1-alex.bennee@linaro.org>

The function qemu_chr_fe_init already treats be->fe_open as a bool and
if it acts like a bool it should be one. While we are at it make the
variable name more descriptive and add kdoc decorations.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20231211145959.93759-1-alex.bennee@linaro.org>

diff --git a/include/chardev/char-fe.h b/include/chardev/char-fe.h
index 0ff6f875116..ecef1828355 100644
--- a/include/chardev/char-fe.h
+++ b/include/chardev/char-fe.h
@@ -7,8 +7,12 @@
 typedef void IOEventHandler(void *opaque, QEMUChrEvent event);
 typedef int BackendChangeHandler(void *opaque);
 
-/* This is the backend as seen by frontend, the actual backend is
- * Chardev */
+/**
+ * struct CharBackend - back end as seen by front end
+ * @fe_is_open: the front end is ready for IO
+ *
+ * The actual backend is Chardev
+ */
 struct CharBackend {
     Chardev *chr;
     IOEventHandler *chr_event;
@@ -17,7 +21,7 @@ struct CharBackend {
     BackendChangeHandler *chr_be_change;
     void *opaque;
     int tag;
-    int fe_open;
+    bool fe_is_open;
 };
 
 /**
@@ -156,12 +160,13 @@ void qemu_chr_fe_set_echo(CharBackend *be, bool echo);
 
 /**
  * qemu_chr_fe_set_open:
+ * @be: a CharBackend
+ * @is_open: the front end open status
  *
- * Set character frontend open status.  This is an indication that the
- * front end is ready (or not) to begin doing I/O.
- * Without associated Chardev, do nothing.
+ * This is an indication that the front end is ready (or not) to begin
+ * doing I/O. Without associated Chardev, do nothing.
  */
-void qemu_chr_fe_set_open(CharBackend *be, int fe_open);
+void qemu_chr_fe_set_open(CharBackend *be, bool is_open);
 
 /**
  * qemu_chr_fe_printf:
diff --git a/chardev/char-fe.c b/chardev/char-fe.c
index 7789f7be9c8..20222a4cad5 100644
--- a/chardev/char-fe.c
+++ b/chardev/char-fe.c
@@ -211,7 +211,7 @@ bool qemu_chr_fe_init(CharBackend *b, Chardev *s, Error **errp)
         }
     }
 
-    b->fe_open = false;
+    b->fe_is_open = false;
     b->tag = tag;
     b->chr = s;
     return true;
@@ -257,7 +257,7 @@ void qemu_chr_fe_set_handlers_full(CharBackend *b,
                                    bool sync_state)
 {
     Chardev *s;
-    int fe_open;
+    bool fe_open;
 
     s = b->chr;
     if (!s) {
@@ -265,10 +265,10 @@ void qemu_chr_fe_set_handlers_full(CharBackend *b,
     }
 
     if (!opaque && !fd_can_read && !fd_read && !fd_event) {
-        fe_open = 0;
+        fe_open = false;
         remove_fd_in_watch(s);
     } else {
-        fe_open = 1;
+        fe_open = true;
     }
     b->chr_can_read = fd_can_read;
     b->chr_read = fd_read;
@@ -336,7 +336,7 @@ void qemu_chr_fe_set_echo(CharBackend *be, bool echo)
     }
 }
 
-void qemu_chr_fe_set_open(CharBackend *be, int fe_open)
+void qemu_chr_fe_set_open(CharBackend *be, bool is_open)
 {
     Chardev *chr = be->chr;
 
@@ -344,12 +344,12 @@ void qemu_chr_fe_set_open(CharBackend *be, int fe_open)
         return;
     }
 
-    if (be->fe_open == fe_open) {
+    if (be->fe_is_open == is_open) {
         return;
     }
-    be->fe_open = fe_open;
+    be->fe_is_open = is_open;
     if (CHARDEV_GET_CLASS(chr)->chr_set_fe_open) {
-        CHARDEV_GET_CLASS(chr)->chr_set_fe_open(chr, fe_open);
+        CHARDEV_GET_CLASS(chr)->chr_set_fe_open(chr, is_open);
     }
 }
 
diff --git a/chardev/char.c b/chardev/char.c
index 185b5ea2556..3c43fb1278f 100644
--- a/chardev/char.c
+++ b/chardev/char.c
@@ -762,7 +762,7 @@ static int qmp_query_chardev_foreach(Object *obj, void *data)
 
     value->label = g_strdup(chr->label);
     value->filename = g_strdup(chr->filename);
-    value->frontend_open = chr->be && chr->be->fe_open;
+    value->frontend_open = chr->be && chr->be->fe_is_open;
 
     QAPI_LIST_PREPEND(*list, value);
 
-- 
2.39.2



  parent reply	other threads:[~2024-01-12 11:05 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-12 11:04 [PULL 00/22] testing and misc updates Alex Bennée
2024-01-12 11:04 ` [PULL 01/22] tests/avocado: Add a test for a little-endian microblaze machine Alex Bennée
2024-01-12 11:04 ` [PULL 02/22] tests/avocado: use snapshot=on in kvm_xen_guest Alex Bennée
2024-08-01  9:48   ` David Woodhouse
2024-01-12 11:04 ` [PULL 03/22] gitlab: include microblazeel in testing Alex Bennée
2024-01-12 11:04 ` Alex Bennée [this message]
2024-01-12 11:04 ` [PULL 05/22] qtest: bump min meson timeout to 60 seconds Alex Bennée
2024-01-12 11:04 ` [PULL 06/22] qtest: bump migration-test timeout to 8 minutes Alex Bennée
2024-01-12 11:04 ` [PULL 07/22] qtest: bump qom-test timeout to 15 minutes Alex Bennée
2024-01-12 11:04 ` [PULL 08/22] qtest: bump npcm7xx_pwm-test timeout to 5 minutes Alex Bennée
2024-01-12 11:04 ` [PULL 09/22] qtest: bump test-hmp timeout to 4 minutes Alex Bennée
2024-01-12 11:04 ` [PULL 10/22] qtest: bump pxe-test timeout to 10 minutes Alex Bennée
2024-01-12 11:04 ` [PULL 11/22] qtest: bump prom-env-test timeout to 6 minutes Alex Bennée
2024-01-12 11:04 ` [PULL 12/22] qtest: bump boot-serial-test timeout to 3 minutes Alex Bennée
2024-01-12 11:04 ` [PULL 13/22] qtest: bump qos-test timeout to 2 minutes Alex Bennée
2024-01-12 11:04 ` [PULL 14/22] qtest: bump aspeed_smc-test timeout to 6 minutes Alex Bennée
2024-01-12 11:04 ` [PULL 15/22] qtest: bump bios-table-test timeout to 9 minutes Alex Bennée
2024-01-12 11:04 ` [PULL 16/22] tests/qtest: Bump the device-introspect-test timeout to 12 minutes Alex Bennée
2024-01-12 11:04 ` [PULL 17/22] tests/unit: Bump test-aio-multithread test timeout to 2 minutes Alex Bennée
2024-01-12 11:04 ` [PULL 18/22] tests/unit: Bump test-crypto-block test timeout to 5 minutes Alex Bennée
2024-01-12 11:04 ` [PULL 19/22] tests/fp: Bump fp-test-mulAdd test timeout to 3 minutes Alex Bennée
2024-01-12 11:04 ` [PULL 20/22] mtest2make: stop disabling meson test timeouts Alex Bennée
2024-01-12 11:04 ` [PULL 21/22] readthodocs: fully specify a build environment Alex Bennée
2024-01-12 11:04 ` [PULL 22/22] Revert "tests/avocado: remove skips from replay_kernel" Alex Bennée
2024-01-12 11:13   ` Peter Maydell
2024-01-12 13:11     ` Alex Bennée

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=20240112110435.3801068-5-alex.bennee@linaro.org \
    --to=alex.bennee@linaro.org \
    --cc=marcandre.lureau@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=philmd@linaro.org \
    --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 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).