This is very useful when starting multiple domains from Xen without xenstore access. It will allow them to print out to the Xen console.
Signed-off-by: Stefano Stabellini <[email protected]> CC: [email protected] CC: [email protected] CC: [email protected] CC: [email protected] CC: [email protected] CC: [email protected] CC: [email protected] CC: [email protected] --- If there is a better way to do this with XSM, please advise. --- xen/drivers/char/console.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xen/drivers/char/console.c b/xen/drivers/char/console.c index 0f05369..dc9e0bb 100644 --- a/xen/drivers/char/console.c +++ b/xen/drivers/char/console.c @@ -555,9 +555,11 @@ long do_console_io(int cmd, int count, XEN_GUEST_HANDLE_PARAM(char) buffer) long rc; unsigned int idx, len; +#ifndef CONFIG_ARM rc = xsm_console_io(XSM_OTHER, current->domain, cmd); if ( rc ) return rc; +#endif switch ( cmd ) { -- 1.9.1 _______________________________________________ Xen-devel mailing list [email protected] https://lists.xenproject.org/mailman/listinfo/xen-devel
