search for: __console_h__

Displaying 2 results from an estimated 2 matches for "__console_h__".

Did you mean: __console__
2006 Feb 18
1
[PATCH] ia64 build fix
Looks like cset 8863 included a header in xenbus.h that makes the ia64 build unhappy. domid_t isn''t define so we blow up including grant_table.h. Fix below. Thanks, Alex Signed-off-by: Alex Williamson <alex.williamson@hp.com> --- diff -r 3ed537add538 linux-2.6-xen-sparse/include/xen/xenbus.h --- a/linux-2.6-xen-sparse/include/xen/xenbus.h Fri Feb 17 21:26:49 2006 +0100 +++
2007 May 15
3
[PATCH 1/12] Add suspend/resume to devices owned by Xen
.../xen/include/xen/console.h Mon May 14 15:05:28 2007 -0400 @@ -38,4 +38,7 @@ int console_steal(int handle, void (*fn) /* Give back stolen console. Takes the identifier returned by console_steal. */ void console_giveback(int id); +int console_suspend(void); + +int console_resume(void); #endif /* __CONSOLE_H__ */ diff -r 3ef0510e44d0 xen/include/xen/serial.h --- a/xen/include/xen/serial.h Tue May 08 10:21:23 2007 +0100 +++ b/xen/include/xen/serial.h Mon May 14 15:05:28 2007 -0400 @@ -104,6 +104,7 @@ int serial_tx_space(int handle); /* Return irq number for specified serial port (identified by index). */...