[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] libxl: return any serial tty path in libxl_console_get_tty
commit 35dbf099ac18924d40533c9d1b9bfbf1ecb818c9 Author: Bob Liu <bob.liu@xxxxxxxxxx> AuthorDate: Thu Aug 4 09:07:56 2016 +0800 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Fri Aug 5 10:37:14 2016 +0100 libxl: return any serial tty path in libxl_console_get_tty When specifying a serial list in domain config, users of libxl_console_get_tty cannot get the tty path of a second specified pty serial, since right now it always returns the tty path of serial 0. Signed-off-by: Bob Liu <bob.liu@xxxxxxxxxx> Acked-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- tools/libxl/libxl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxl/libxl.c b/tools/libxl/libxl.c index 7bd3e8c..1de293b 100644 --- a/tools/libxl/libxl.c +++ b/tools/libxl/libxl.c @@ -1786,7 +1786,7 @@ int libxl_console_get_tty(libxl_ctx *ctx, uint32_t domid, int cons_num, switch (type) { case LIBXL_CONSOLE_TYPE_SERIAL: - tty_path = GCSPRINTF("%s/serial/0/tty", dom_path); + tty_path = GCSPRINTF("%s/serial/%d/tty", dom_path, cons_num); break; case LIBXL_CONSOLE_TYPE_PV: if (cons_num == 0) -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |