summaryrefslogtreecommitdiffstats
path: root/python/qemu
diff options
context:
space:
mode:
authorJohn Snow2021-11-18 21:46:16 +0100
committerJohn Snow2021-11-23 00:40:59 +0100
commit72b17fe715056c96ea73f187ab46721788b3a782 (patch)
tree3a318ab3084c2ee6e8ad3b5f7ad020b194e861a6 /python/qemu
parentpython/machine: remove _remove_monitor_sockfile property (diff)
downloadqemu-72b17fe715056c96ea73f187ab46721788b3a782.tar.gz
qemu-72b17fe715056c96ea73f187ab46721788b3a782.tar.xz
qemu-72b17fe715056c96ea73f187ab46721788b3a782.zip
python/machine: add instance disambiguator to default nickname
If you create two instances of QEMUMachine(), they'll both create the same nickname by default -- which is not that helpful. Luckily, they'll both create unique temporary directories ... but due to user configuration, they may share logging and sockfile directories, meaning two instances can collide. The Python logging will also be quite confusing, with no differentiation between the two instances. Add an instance disambiguator (The memory address of the instance) to the default nickname to foolproof this in all cases. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Willian Rampazzo <willianr@redhat.com> Message-id: 20211118204620.1897674-4-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'python/qemu')
-rw-r--r--python/qemu/machine/machine.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qemu/machine/machine.py b/python/qemu/machine/machine.py
index ea9e07805d..ad529fd92a 100644
--- a/python/qemu/machine/machine.py
+++ b/python/qemu/machine/machine.py
@@ -133,7 +133,7 @@ class QEMUMachine:
self._wrapper = wrapper
self._qmp_timer = qmp_timer
- self._name = name or "qemu-%d" % os.getpid()
+ self._name = name or f"qemu-{os.getpid()}-{id(self):02x}"
self._temp_dir: Optional[str] = None
self._base_temp_dir = base_temp_dir
self._sock_dir = sock_dir