/usr/src/kernels/4.18.0-553.121.1.el8_10.x86_64/include/xen
NameSizeModeActions
arm/-0755rm
interface/-0755rm
acpi.h34920644editdlrm
balloon.h13110644editdlrm
events.h44010644editdlrm
features.h5020644editdlrm
grant_table.h93130644editdlrm
hvc-console.h5180644editdlrm
hvm.h13210644editdlrm
page.h13160644editdlrm
platform_pci.h20940644editdlrm
swiotlb-xen.h5200644editdlrm
tmem.h3490644editdlrm
xen-front-pgdir-shbuf.h23700644editdlrm
xen-ops.h66020644editdlrm
xen.h13690644editdlrm
xenbus.h83110644editdlrm
xenbus_dev.h18460644editdlrm
Edit: /usr/src/kernels/4.18.0-553.121.1.el8_10.x86_64/include/xen/hvc-console.h (518B)
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef XEN_HVC_CONSOLE_H #define XEN_HVC_CONSOLE_H extern struct console xenboot_console; #ifdef CONFIG_HVC_XEN void xen_console_resume(void); void xen_raw_console_write(const char *str); __printf(1, 2) void xen_raw_printk(const char *fmt, ...); #else static inline void xen_console_resume(void) { } static inline void xen_raw_console_write(const char *str) { } static inline __printf(1, 2) void xen_raw_printk(const char *fmt, ...) { } #endif #endif /* XEN_HVC_CONSOLE_H */