qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [FOR 0.12 PATCH v4 01/22] default devices: qdev integration.
@ 2009-12-08 12:11 Gerd Hoffmann
  2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 01/22] qdev: make compat stuff more generic Gerd Hoffmann
                   ` (23 more replies)
  0 siblings, 24 replies; 33+ messages in thread
From: Gerd Hoffmann @ 2009-12-08 12:11 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann, agraf, lcapitulino

  Hi,

Qemu creates a bunch of default devices (serial, parallel, vga, ...) if
the user didn't specify one on the command line.  Unfortunaly this
doesn't work well with the qdev way of doing things because this logic
is tied to the -serial, -parallel, ... command line switches.  Devices
created via -device are ignored.  This patch set fixes this.  It also
adds a command line switch to disable all default devices and does a few
cleanups in the code touched anyway.

New in v3: Rebased against latest master.  Two patches (qmp monitor +
s390 console) came into the way.  Because the way how serial lines and
the monitor are initialized changes quite heavily it looked alot cleaner
to me just revert those patches, apply the v2 patches, then reimplement
the two patches on top of that.

New in v4:
 * Rebased against latest master.
 * Moved the included fixes from (yesterdays) staging to the head
   of this series.
 * Fixed segfault without -monitor switch.
 * Killed noisy debug leftover.
 * Replaced fprintf("fixme") with a real error message.
 * Better commit messages for the monitor changes.
 * Killed the #ifdef for s390 virtio console.

Luiz + Alex, please have a closer look at this.

http://repo.or.cz/w/qemu/kraxel.git/shortlog/refs/heads/default.v4

thanks,
  Gerd

^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2009-12-10  9:45 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-08 12:11 [Qemu-devel] [FOR 0.12 PATCH v4 01/22] default devices: qdev integration Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 01/22] qdev: make compat stuff more generic Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 02/22] qdev: add command line option to set global defaults for properties Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 03/22] qdev: also match bus name for global properties Gerd Hoffmann
2009-12-09 16:14   ` [Qemu-devel] " Michael S. Tsirkin
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 04/22] chardev: make chardevs specified in config file work Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 05/22] Revert "monitor: Command-line flag to enable control mode" Gerd Hoffmann
2009-12-10  7:59   ` Markus Armbruster
2009-12-10  9:26     ` Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 06/22] Revert "Set default console to virtio on S390x" Gerd Hoffmann
2009-12-10  8:00   ` Markus Armbruster
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 07/22] chardev: move greeting into vc backend Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 08/22] vc: colorize chardev title line with blue background Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 09/22] default devices: core code & serial lines Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 10/22] default devices: parallel port Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 11/22] default devices: qemu monitor Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 12/22] zap serial_monitor_mux Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 13/22] default devices: vga adapter Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 14/22] default devices: add global cmd line option Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 15/22] default devices: network Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 16/22] default devices: drives Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 17/22] un-static qemu_chr_parse_compat() Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 18/22] rework -monitor handling, switch to QemuOpts Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 19/22] add new -mon switch Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 20/22] add -qmp convinience switch Gerd Hoffmann
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 21/22] default devices: virtio consoles Gerd Hoffmann
2009-12-10  8:37   ` Markus Armbruster
2009-12-08 12:11 ` [Qemu-devel] [FOR 0.12 PATCH v4 22/22] Set default console to virtio on S390x Gerd Hoffmann
2009-12-10  8:36   ` Markus Armbruster
2009-12-10  9:34     ` Gerd Hoffmann
2009-12-10  9:44       ` Markus Armbruster
2009-12-08 18:21 ` [Qemu-devel] Re: [FOR 0.12 PATCH v4 01/22] default devices: qdev integration Luiz Capitulino
2009-12-10  8:39 ` [Qemu-devel] " Markus Armbruster

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).