* [PATCH v2 0/2] build spice chardevs as module @ 2020-09-16 8:39 Gerd Hoffmann 2020-09-16 8:39 ` [PATCH v2 1/2] spice: simplify chardev setup Gerd Hoffmann 2020-09-16 8:39 ` [PATCH v2 2/2] chardev: build spice chardevs as module Gerd Hoffmann 0 siblings, 2 replies; 6+ messages in thread From: Gerd Hoffmann @ 2020-09-16 8:39 UTC (permalink / raw) To: qemu-devel; +Cc: Paolo Bonzini, Gerd Hoffmann, Marc-André Lureau Gerd Hoffmann (2): spice: simplify chardev setup chardev: build spice chardevs as module include/chardev/spice.h | 1 - include/ui/qemu-spice.h | 1 - chardev/spice.c | 29 ++++++----------------------- softmmu/vl.c | 9 +++++---- ui/spice-app.c | 17 +++++++++-------- ui/spice-core.c | 2 -- util/module.c | 2 ++ chardev/meson.build | 7 ++++++- 8 files changed, 28 insertions(+), 40 deletions(-) -- 2.27.0 ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v2 1/2] spice: simplify chardev setup 2020-09-16 8:39 [PATCH v2 0/2] build spice chardevs as module Gerd Hoffmann @ 2020-09-16 8:39 ` Gerd Hoffmann 2020-09-16 9:06 ` Daniel P. Berrangé 2020-09-16 8:39 ` [PATCH v2 2/2] chardev: build spice chardevs as module Gerd Hoffmann 1 sibling, 1 reply; 6+ messages in thread From: Gerd Hoffmann @ 2020-09-16 8:39 UTC (permalink / raw) To: qemu-devel; +Cc: Paolo Bonzini, Gerd Hoffmann, Marc-André Lureau Initialize spice before chardevs. That allows to register the spice chardevs directly in the init function and removes the need to maintain a linked list of chardevs just for registration. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> --- include/chardev/spice.h | 1 - include/ui/qemu-spice.h | 1 - chardev/spice.c | 29 ++++++----------------------- softmmu/vl.c | 9 +++++---- ui/spice-app.c | 17 +++++++++-------- ui/spice-core.c | 2 -- 6 files changed, 20 insertions(+), 39 deletions(-) diff --git a/include/chardev/spice.h b/include/chardev/spice.h index 99f26aedde54..543b93d38ce3 100644 --- a/include/chardev/spice.h +++ b/include/chardev/spice.h @@ -13,7 +13,6 @@ struct SpiceChardev { bool blocked; const uint8_t *datapos; int datalen; - QLIST_ENTRY(SpiceChardev) next; }; typedef struct SpiceChardev SpiceChardev; diff --git a/include/ui/qemu-spice.h b/include/ui/qemu-spice.h index 8c23dfe71797..d34cea2e0fcd 100644 --- a/include/ui/qemu-spice.h +++ b/include/ui/qemu-spice.h @@ -46,7 +46,6 @@ int qemu_spice_migrate_info(const char *hostname, int port, int tls_port, #else #define SPICE_NEEDS_SET_MM_TIME 0 #endif -void qemu_spice_register_ports(void); #else /* CONFIG_SPICE */ diff --git a/chardev/spice.c b/chardev/spice.c index bf7ea1e2940d..9733f0671699 100644 --- a/chardev/spice.c +++ b/chardev/spice.c @@ -14,9 +14,6 @@ typedef struct SpiceCharSource { SpiceChardev *scd; } SpiceCharSource; -static QLIST_HEAD(, SpiceChardev) spice_chars = - QLIST_HEAD_INITIALIZER(spice_chars); - static int vmc_write(SpiceCharDeviceInstance *sin, const uint8_t *buf, int len) { SpiceChardev *scd = container_of(sin, SpiceChardev, sin); @@ -216,8 +213,6 @@ static void char_spice_finalize(Object *obj) vmc_unregister_interface(s); - QLIST_SAFE_REMOVE(s, next); - g_free((char *)s->sin.subtype); g_free((char *)s->sin.portname); } @@ -256,8 +251,6 @@ static void chr_open(Chardev *chr, const char *subtype) s->active = false; s->sin.subtype = g_strdup(subtype); - - QLIST_INSERT_HEAD(&spice_chars, s, next); } static void qemu_chr_open_spice_vmc(Chardev *chr, @@ -310,28 +303,18 @@ void qemu_chr_open_spice_port(Chardev *chr, return; } + if (!using_spice) { + error_setg(errp, "spice not enabled"); + return; + } + chr_open(chr, "port"); *be_opened = false; s = SPICE_CHARDEV(chr); s->sin.portname = g_strdup(name); - if (using_spice) { - /* spice server already created */ - vmc_register_interface(s); - } -} - -void qemu_spice_register_ports(void) -{ - SpiceChardev *s; - - QLIST_FOREACH(s, &spice_chars, next) { - if (s->sin.portname == NULL) { - continue; - } - vmc_register_interface(s); - } + vmc_register_interface(s); } static void qemu_chr_parse_spice_vmc(QemuOpts *opts, ChardevBackend *backend, diff --git a/softmmu/vl.c b/softmmu/vl.c index f7b103467c02..062468d76178 100644 --- a/softmmu/vl.c +++ b/softmmu/vl.c @@ -4121,6 +4121,11 @@ void qemu_init(int argc, char **argv, char **envp) page_size_init(); socket_init(); + /* spice needs the timers to be initialized by this point */ + /* spice must initialize before audio as it changes the default auiodev */ + /* spice must initialize before chardevs (for spicevmc and spiceport) */ + qemu_spice_init(); + qemu_opts_foreach(qemu_find_opts("object"), user_creatable_add_opts_foreach, object_create_initial, &error_fatal); @@ -4133,10 +4138,6 @@ void qemu_init(int argc, char **argv, char **envp) fsdev_init_func, NULL, &error_fatal); #endif - /* spice needs the timers to be initialized by this point */ - /* spice must initialize before audio as it changes the default auiodev */ - qemu_spice_init(); - /* * Note: we need to create audio and block backends before * machine_set_property(), so machine properties can refer to diff --git a/ui/spice-app.c b/ui/spice-app.c index 93e105c6ee82..0e2c57cbc6f1 100644 --- a/ui/spice-app.c +++ b/ui/spice-app.c @@ -120,7 +120,6 @@ static void spice_app_atexit(void) static void spice_app_display_early_init(DisplayOptions *opts) { QemuOpts *qopts; - ChardevBackend *be = chr_spice_backend_new(); GError *err = NULL; if (opts->has_full_screen) { @@ -165,6 +164,15 @@ static void spice_app_display_early_init(DisplayOptions *opts) qemu_opt_set(qopts, "gl", opts->has_gl ? "on" : "off", &error_abort); display_opengl = opts->has_gl; #endif +} + +static void spice_app_display_init(DisplayState *ds, DisplayOptions *opts) +{ + ChardevBackend *be = chr_spice_backend_new(); + QemuOpts *qopts; + GError *err = NULL; + gchar *uri; + be->u.spiceport.data->fqdn = g_strdup("org.qemu.monitor.qmp.0"); qemu_chardev_new("org.qemu.monitor.qmp", TYPE_CHARDEV_SPICEPORT, be, NULL, &error_abort); @@ -174,13 +182,6 @@ static void spice_app_display_early_init(DisplayOptions *opts) qemu_opt_set(qopts, "mode", "control", &error_abort); qapi_free_ChardevBackend(be); -} - -static void spice_app_display_init(DisplayState *ds, DisplayOptions *opts) -{ - GError *err = NULL; - gchar *uri; - uri = g_strjoin("", "spice+unix://", app_dir, "/", "spice.sock", NULL); info_report("Launching display with URI: %s", uri); g_app_info_launch_default_for_uri(uri, NULL, &err); diff --git a/ui/spice-core.c b/ui/spice-core.c index ecc2ec2c55c2..37dd68f2aba2 100644 --- a/ui/spice-core.c +++ b/ui/spice-core.c @@ -813,8 +813,6 @@ void qemu_spice_init(void) g_free(x509_cert_file); g_free(x509_cacert_file); - qemu_spice_register_ports(); - #ifdef HAVE_SPICE_GL if (qemu_opt_get_bool(opts, "gl", 0)) { if ((port != 0) || (tls_port != 0)) { -- 2.27.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v2 1/2] spice: simplify chardev setup 2020-09-16 8:39 ` [PATCH v2 1/2] spice: simplify chardev setup Gerd Hoffmann @ 2020-09-16 9:06 ` Daniel P. Berrangé 2020-09-16 9:25 ` Paolo Bonzini 0 siblings, 1 reply; 6+ messages in thread From: Daniel P. Berrangé @ 2020-09-16 9:06 UTC (permalink / raw) To: Gerd Hoffmann; +Cc: Paolo Bonzini, qemu-devel, Marc-André Lureau On Wed, Sep 16, 2020 at 10:39:12AM +0200, Gerd Hoffmann wrote: > Initialize spice before chardevs. That allows to register the spice > chardevs directly in the init function and removes the need to maintain > a linked list of chardevs just for registration. > > Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> > --- > include/chardev/spice.h | 1 - > include/ui/qemu-spice.h | 1 - > chardev/spice.c | 29 ++++++----------------------- > softmmu/vl.c | 9 +++++---- > ui/spice-app.c | 17 +++++++++-------- > ui/spice-core.c | 2 -- > 6 files changed, 20 insertions(+), 39 deletions(-) > > diff --git a/include/chardev/spice.h b/include/chardev/spice.h > index 99f26aedde54..543b93d38ce3 100644 > --- a/include/chardev/spice.h > +++ b/include/chardev/spice.h > @@ -13,7 +13,6 @@ struct SpiceChardev { > bool blocked; > const uint8_t *datapos; > int datalen; > - QLIST_ENTRY(SpiceChardev) next; > }; > typedef struct SpiceChardev SpiceChardev; > > diff --git a/include/ui/qemu-spice.h b/include/ui/qemu-spice.h > index 8c23dfe71797..d34cea2e0fcd 100644 > --- a/include/ui/qemu-spice.h > +++ b/include/ui/qemu-spice.h > @@ -46,7 +46,6 @@ int qemu_spice_migrate_info(const char *hostname, int port, int tls_port, > #else > #define SPICE_NEEDS_SET_MM_TIME 0 > #endif > -void qemu_spice_register_ports(void); > > #else /* CONFIG_SPICE */ > > diff --git a/chardev/spice.c b/chardev/spice.c > index bf7ea1e2940d..9733f0671699 100644 > --- a/chardev/spice.c > +++ b/chardev/spice.c > @@ -14,9 +14,6 @@ typedef struct SpiceCharSource { > SpiceChardev *scd; > } SpiceCharSource; > > -static QLIST_HEAD(, SpiceChardev) spice_chars = > - QLIST_HEAD_INITIALIZER(spice_chars); > - > static int vmc_write(SpiceCharDeviceInstance *sin, const uint8_t *buf, int len) > { > SpiceChardev *scd = container_of(sin, SpiceChardev, sin); > @@ -216,8 +213,6 @@ static void char_spice_finalize(Object *obj) > > vmc_unregister_interface(s); > > - QLIST_SAFE_REMOVE(s, next); > - > g_free((char *)s->sin.subtype); > g_free((char *)s->sin.portname); > } > @@ -256,8 +251,6 @@ static void chr_open(Chardev *chr, const char *subtype) > > s->active = false; > s->sin.subtype = g_strdup(subtype); > - > - QLIST_INSERT_HEAD(&spice_chars, s, next); > } > > static void qemu_chr_open_spice_vmc(Chardev *chr, > @@ -310,28 +303,18 @@ void qemu_chr_open_spice_port(Chardev *chr, > return; > } > > + if (!using_spice) { > + error_setg(errp, "spice not enabled"); > + return; > + } > + > chr_open(chr, "port"); > > *be_opened = false; > s = SPICE_CHARDEV(chr); > s->sin.portname = g_strdup(name); > > - if (using_spice) { > - /* spice server already created */ > - vmc_register_interface(s); > - } > -} > - > -void qemu_spice_register_ports(void) > -{ > - SpiceChardev *s; > - > - QLIST_FOREACH(s, &spice_chars, next) { > - if (s->sin.portname == NULL) { > - continue; > - } > - vmc_register_interface(s); > - } > + vmc_register_interface(s); > } > > static void qemu_chr_parse_spice_vmc(QemuOpts *opts, ChardevBackend *backend, > diff --git a/softmmu/vl.c b/softmmu/vl.c > index f7b103467c02..062468d76178 100644 > --- a/softmmu/vl.c > +++ b/softmmu/vl.c > @@ -4121,6 +4121,11 @@ void qemu_init(int argc, char **argv, char **envp) > page_size_init(); > socket_init(); > > + /* spice needs the timers to be initialized by this point */ > + /* spice must initialize before audio as it changes the default auiodev */ > + /* spice must initialize before chardevs (for spicevmc and spiceport) */ > + qemu_spice_init(); > + I don't think we should be putting this before the '-object' processing too. We really want -object to be the first thing processed in general. > qemu_opts_foreach(qemu_find_opts("object"), > user_creatable_add_opts_foreach, > object_create_initial, &error_fatal); > @@ -4133,10 +4138,6 @@ void qemu_init(int argc, char **argv, char **envp) > fsdev_init_func, NULL, &error_fatal); > #endif > > - /* spice needs the timers to be initialized by this point */ > - /* spice must initialize before audio as it changes the default auiodev */ > - qemu_spice_init(); > - > /* > * Note: we need to create audio and block backends before > * machine_set_property(), so machine properties can refer to Regards, Daniel -- |: https://berrange.com -o- https://www.flickr.com/photos/dberrange :| |: https://libvirt.org -o- https://fstop138.berrange.com :| |: https://entangle-photo.org -o- https://www.instagram.com/dberrange :| ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2 1/2] spice: simplify chardev setup 2020-09-16 9:06 ` Daniel P. Berrangé @ 2020-09-16 9:25 ` Paolo Bonzini 0 siblings, 0 replies; 6+ messages in thread From: Paolo Bonzini @ 2020-09-16 9:25 UTC (permalink / raw) To: Daniel P. Berrangé, Gerd Hoffmann; +Cc: Marc-André Lureau, qemu-devel On 16/09/20 11:06, Daniel P. Berrangé wrote: >> + /* spice must initialize before chardevs (for spicevmc and spiceport) */ >> + qemu_spice_init(); >> + > I don't think we should be putting this before the '-object' processing too. > We really want -object to be the first thing processed in general. > What about making qemu_spice_init() idempotent (i.e. "static bool false = true; if (!first) return; first = false;") and calling it from the spicevmc and spiceport creation function? Paolo ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v2 2/2] chardev: build spice chardevs as module 2020-09-16 8:39 [PATCH v2 0/2] build spice chardevs as module Gerd Hoffmann 2020-09-16 8:39 ` [PATCH v2 1/2] spice: simplify chardev setup Gerd Hoffmann @ 2020-09-16 8:39 ` Gerd Hoffmann 2020-09-16 9:22 ` Paolo Bonzini 1 sibling, 1 reply; 6+ messages in thread From: Gerd Hoffmann @ 2020-09-16 8:39 UTC (permalink / raw) To: qemu-devel; +Cc: Paolo Bonzini, Gerd Hoffmann, Marc-André Lureau Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> --- util/module.c | 2 ++ chardev/meson.build | 7 ++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/util/module.c b/util/module.c index 34772e7d87eb..86781c207f7d 100644 --- a/util/module.c +++ b/util/module.c @@ -268,6 +268,8 @@ static struct { { "virtio-gpu-device", "hw-", "display-virtio-gpu" }, { "vhost-user-gpu", "hw-", "display-virtio-gpu" }, { "chardev-braille", "chardev-", "baum" }, + { "chardev-spicevmc", "chardev-", "spice" }, + { "chardev-spiceport", "chardev-", "spice" }, }; static bool module_loaded_qom_all; diff --git a/chardev/meson.build b/chardev/meson.build index 54e88d031004..a16ea8ab7c24 100644 --- a/chardev/meson.build +++ b/chardev/meson.build @@ -32,7 +32,6 @@ libchardev = static_library('chardev', chardev_ss.sources() + genh, chardev = declare_dependency(link_whole: libchardev) softmmu_ss.add(files('chardev-sysemu.c', 'msmouse.c', 'wctablet.c', 'testdev.c')) -softmmu_ss.add(when: ['CONFIG_SPICE', spice], if_true: files('spice.c')) chardev_modules = {} @@ -42,4 +41,10 @@ if config_host.has_key('CONFIG_BRLAPI') chardev_modules += { 'baum': module_ss } endif +if config_host.has_key('CONFIG_SPICE') + module_ss = ss.source_set() + module_ss.add(when: [spice], if_true: [files('spice.c'), spice]) + chardev_modules += { 'spice': module_ss } +endif + modules += { 'chardev': chardev_modules } -- 2.27.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v2 2/2] chardev: build spice chardevs as module 2020-09-16 8:39 ` [PATCH v2 2/2] chardev: build spice chardevs as module Gerd Hoffmann @ 2020-09-16 9:22 ` Paolo Bonzini 0 siblings, 0 replies; 6+ messages in thread From: Paolo Bonzini @ 2020-09-16 9:22 UTC (permalink / raw) To: Gerd Hoffmann, qemu-devel; +Cc: Marc-André Lureau On 16/09/20 10:39, Gerd Hoffmann wrote: > +if config_host.has_key('CONFIG_SPICE') > + module_ss = ss.source_set() > + module_ss.add(when: [spice], if_true: [files('spice.c'), spice]) You don't need to have "spice" listed in both sides. It is not needed in "when" because you are effectively inside an "if spice.found()" that is written in a weird way; and it is not needed in "if_true" if it is listed in "when". So it can be either module_ss.add(files('spice.c'), spice) or module_ss.add(when: spice, if_true: files('spice.c')) Thanks, Paolo > + chardev_modules += { 'spice': module_ss } > +endif > + ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2020-09-16 9:26 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-09-16 8:39 [PATCH v2 0/2] build spice chardevs as module Gerd Hoffmann 2020-09-16 8:39 ` [PATCH v2 1/2] spice: simplify chardev setup Gerd Hoffmann 2020-09-16 9:06 ` Daniel P. Berrangé 2020-09-16 9:25 ` Paolo Bonzini 2020-09-16 8:39 ` [PATCH v2 2/2] chardev: build spice chardevs as module Gerd Hoffmann 2020-09-16 9:22 ` Paolo Bonzini
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).