summaryrefslogtreecommitdiffstats
path: root/vl.c
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2010-03-21 14:15:24 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2010-03-21 14:15:24 -0500
commit5ec9cc64a450140bdaf6164102833e324ecc655c (patch)
tree798a2f1b35c93c747f21f9668c7f1c84e3bd6073 /vl.c
parent2d114dc16f723649328e84919718f79ed2672903 (diff)
downloadhqemu-5ec9cc64a450140bdaf6164102833e324ecc655c.zip
hqemu-5ec9cc64a450140bdaf6164102833e324ecc655c.tar.gz
Revert "Introduce a default qmp session"
This reverts commit 3290c4aac5b97bb1e3b2b28d94669f2c611ce84a. Conflicts: vl.c
Diffstat (limited to 'vl.c')
-rw-r--r--vl.c63
1 files changed, 0 insertions, 63 deletions
diff --git a/vl.c b/vl.c
index a4d6bc2..d69250c 100644
--- a/vl.c
+++ b/vl.c
@@ -93,10 +93,6 @@ extern int madvise(caddr_t, size_t, int);
#include <libvdeplug.h>
#endif
-#if defined(CONFIG_UUID)
-#include <uuid/uuid.h>
-#endif
-
#ifdef _WIN32
#include <windows.h>
#endif
@@ -3708,62 +3704,6 @@ static const QEMUOption *lookup_opt(int argc, char **argv,
return popt;
}
-static void qmp_add_default(void)
-{
- char buffer[4096];
- const char *home;
- static uint8_t null_uuid[16];
- uint8_t uuid[16];
- int ret;
-
- home = getenv("HOME");
- if (!home) {
- return;
- }
-
- if (memcmp(qemu_uuid, null_uuid, sizeof(null_uuid)) == 0) {
-#if defined(CONFIG_UUID)
- uuid_generate(uuid);
-#else
- return;
-#endif
- } else {
- memcpy(uuid, qemu_uuid, sizeof(qemu_uuid));
- }
-
- snprintf(buffer, sizeof(buffer), "%s/.qemu", home);
-#ifdef __MINGW32__
- ret = mkdir(buffer);
-#else
- ret = mkdir(buffer, 0755);
-#endif
- if (ret == -1 && errno != EEXIST) {
- fprintf(stderr, "could not open default QMP port\n");
- return;
- }
-
- snprintf(buffer, sizeof(buffer), "%s/.qemu/qmp", home);
-#ifdef __MINGW32__
- ret = mkdir(buffer);
-#else
- ret = mkdir(buffer, 0755);
-#endif
- if (ret == -1 && errno != EEXIST) {
- fprintf(stderr, "could not open default QMP port\n");
- return;
- }
-
- snprintf(buffer, sizeof(buffer),
- "unix:%s/.qemu/qmp/" UUID_FMT ".sock,server,nowait",
- home,
- uuid[0], uuid[1], uuid[2], uuid[3],
- uuid[4], uuid[5], uuid[6], uuid[7],
- uuid[8], uuid[9], uuid[10], uuid[11],
- uuid[12], uuid[13], uuid[14], uuid[15]);
-
- monitor_parse(buffer, "control");
-}
-
int main(int argc, char **argv, char **envp)
{
const char *gdbstub_dev = NULL;
@@ -4680,9 +4620,6 @@ int main(int argc, char **argv, char **envp)
if (default_virtcon)
add_device_config(DEV_VIRTCON, "vc:80Cx24C");
}
- if (default_qmp) {
- qmp_add_default();
- }
if (default_vga)
vga_interface_type = VGA_CIRRUS;
OpenPOWER on IntegriCloud