projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
88a3332
)
monitor: Cleanup ID assignment for compat switch
author
Jan Kiszka
<jan.kiszka@siemens.com>
Tue, 6 Apr 2010 14:55:52 +0000
(16:55 +0200)
committer
Luiz Capitulino
<lcapitulino@redhat.com>
Mon, 26 Apr 2010 19:36:31 +0000
(16:36 -0300)
Canonicalize the ID assignment when creating monitor devices via the
legacy switch and use less easily colliding names.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
vl.c
patch
|
blob
|
history
diff --git
a/vl.c
b/vl.c
index
9ef6f2c
..
20d24be
100644
(file)
--- a/
vl.c
+++ b/
vl.c
@@
-2348,11
+2348,9
@@
static void monitor_parse(const char *optarg, const char *mode)
if (strstart(optarg, "chardev:", &p)) {
snprintf(label, sizeof(label), "%s", p);
} else {
- if (monitor_device_index) {
- snprintf(label, sizeof(label), "monitor%d",
- monitor_device_index);
- } else {
- snprintf(label, sizeof(label), "monitor");
+ snprintf(label, sizeof(label), "compat_monitor%d",
+ monitor_device_index);
+ if (monitor_device_index == 0) {
def = 1;
}
opts = qemu_chr_parse_compat(label, optarg);