* src/qemu/qemu_driver.c: Parse pty devices for channels
---
src/qemu/qemu_driver.c | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c
index 2c5086b..ebf44b0 100644
--- a/src/qemu/qemu_driver.c
+++ b/src/qemu/qemu_driver.c
@@ -1271,6 +1271,16 @@ qemudFindCharDevicePTYs(virConnectPtr conn,
}
}
+ /* then the channel devices */
+ for (i = 0 ; i < vm->def->nchannels ; i++) {
+ virDomainChrDefPtr chr = vm->def->channels[i];
+ if (chr->type == VIR_DOMAIN_CHR_TYPE_PTY) {
+ if ((ret = qemudExtractTTYPath(conn, output, &offset,
+ &chr->data.file.path)) != 0)
+ return ret;
+ }
+ }
+
return 0;
}
--
1.6.5.2