mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
6b9b732d0e
Add code to: 1. Deal with the console page being canonicalized. During save, the console's mfn in the start_info structure is canonicalized to a pfn. In order to deal with that, we always use a copy of the pfn and indirect off that all the time. However, we fall back to using the mfn if the pfn hasn't been initialized yet. 2. Restore the console event channel, and rebind it to the existing irq. Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
12 lines
245 B
C
12 lines
245 B
C
#ifndef XEN_HVC_CONSOLE_H
|
|
#define XEN_HVC_CONSOLE_H
|
|
|
|
extern struct console xenboot_console;
|
|
|
|
void xen_console_resume(void);
|
|
|
|
void xen_raw_console_write(const char *str);
|
|
void xen_raw_printk(const char *fmt, ...);
|
|
|
|
#endif /* XEN_HVC_CONSOLE_H */
|