Displaying 9 results from an estimated 9 matches for "do_console_io".
2006 Jan 26
2
do_* declarations (was: Re: [Xen-ia64-devel] [PATCH] added multicall)
..._hypercall(void);
extern long do_dom0_op(dom0_op_t *u_dom0_op);
extern long do_memory_op(int cmd, void *arg);
extern long do_multicall(multicall_entry_t *call_list, unsigned int nr_calls);
extern long do_event_channel_op(evtchn_op_t *uop);
extern long do_xen_version(int cmd, void *arg);
extern long do_console_io(int cmd, int count, char *buffer);
extern long do_grant_table_op(unsigned int cmd, void *uop, unsigned int 
count);
Thanks,
Tristan.
Le Jeudi 26 Janvier 2006 05:33, Masaki Kanno a écrit :
> Hi, Tristan
>
> Thank you for advice. Please give me advice once again.
> I was not able to fin...
2013 Aug 16
7
[PATCH v2] xen/console: buffer and show origin of guest PV writes
...rivers/char/console.c
+++ b/xen/drivers/char/console.c
@@ -24,6 +24,7 @@
 #include <xen/shutdown.h>
 #include <xen/video.h>
 #include <xen/kexec.h>
+#include <xen/ctype.h>
 #include <asm/debugger.h>
 #include <asm/div64.h>
 #include <xen/hypercall.h> /* for do_console_io */
@@ -375,6 +376,7 @@ static long guest_console_write(XEN_GUEST_HANDLE_PARAM(char) buffer, int count)
 {
     char kbuf[128];
     int kcount;
+    struct domain *cd = current->domain;
 
     while ( count > 0 )
     {
@@ -388,19 +390,60 @@ static long guest_console_write(XEN_GUEST_HANDLE_PA...
2013 Sep 09
0
[PATCH v3] xen/console: buffer and show origin of guest PV writes
...rivers/char/console.c
+++ b/xen/drivers/char/console.c
@@ -24,6 +24,7 @@
 #include <xen/shutdown.h>
 #include <xen/video.h>
 #include <xen/kexec.h>
+#include <xen/ctype.h>
 #include <asm/debugger.h>
 #include <asm/div64.h>
 #include <xen/hypercall.h> /* for do_console_io */
@@ -375,6 +376,7 @@ static long guest_console_write(XEN_GUEST_HANDLE_PARAM(char) buffer, int count)
 {
     char kbuf[128];
     int kcount;
+    struct domain *cd = current->domain;
 
     while ( count > 0 )
     {
@@ -388,19 +390,60 @@ static long guest_console_write(XEN_GUEST_HANDLE_PA...
2006 Nov 20
1
compilation bug
...#39;'
/home/test1/xen-unstable/xen/common/built_in.o: In function `number'':
/home/test1/xen-unstable/xen/common/vsprintf.c:242: relocation
truncated to fit: R_X86_64_PLT32 against undefined symbol
`__stack_chk_fail''
/home/test1/xen-unstable/xen/drivers/built_in.o: In function `do_console_io'':
/home/test1/xen-unstable/xen/drivers/char/console.c:275: relocation
truncated to fit: R_X86_64_PLT32 against undefined symbol
`__stack_chk_fail''
/home/test1/xen-unstable/xen/drivers/built_in.o: In function `panic'':
/home/test1/xen-unstable/xen/drivers/char/console.c:648...
2012 Feb 13
0
[PATCH 05/14] arm: implement exception and hypercall entries.
...pat
+	.long	do_ni_hypercall		
+	.long	do_ni_hypercall
+	.long	do_ni_hypercall
+	.long	do_ni_hypercall		/* 10 */
+	.long	do_ni_hypercall
+	.long	do_memory_op
+	.long	do_multicall
+	.long	do_update_va_mapping
+	.long	do_set_timer_op		/* 15 */
+	.long	do_event_channel_op
+	.long	do_xen_version
+	.long	do_console_io
+	.long	do_physdev_op
+	.long	do_grant_table_op	/* 20 */
+	.long	do_vm_assist
+	.long	do_ni_hypercall
+	.long	do_restore_trap_frame
+	.long	do_vcpu_op
+	.long	do_ni_hypercall		/* 25 */
+	.long	do_mmuext_op
+	.long	do_ni_hypercall
+	.long	do_nmi_op
+	.long	do_sched_op
+	.long	do_ni_hypercall		/* 30...
2012 Aug 10
18
[PATCH v2 0/5] ARM hypercall ABI: 64 bit ready
Hi all,
this patch series makes the necessary changes to make sure that the
current ARM hypercall ABI can be used as-is on 64 bit ARM platforms:
- it defines xen_ulong_t as uint64_t on ARM;
- it introduces a new macro to handle guest pointers, called
XEN_GUEST_HANDLE_PARAM (that has size 4 bytes on aarch and is going to
have size 8 bytes on aarch64);
- it replaces all the occurrences of
2012 Aug 16
27
[PATCH v3 0/6] ARM hypercall ABI: 64 bit ready
Hi all,
this patch series makes the necessary changes to make sure that the
current ARM hypercall ABI can be used as-is on 64 bit ARM platforms:
- it defines xen_ulong_t as uint64_t on ARM;
- it introduces a new macro to handle guest pointers, called
XEN_GUEST_HANDLE_PARAM (that has size 4 bytes on aarch and is going to
have size 8 bytes on aarch64);
- it replaces all the occurrences of
2012 Jan 09
39
[PATCH v4 00/25] xen: ARMv7 with virtualization extensions
Hello everyone,
this is the fourth version of the patch series that introduces ARMv7
with virtualization extensions support in Xen.
The series allows Xen and Dom0 to boot on a Cortex-A15 based Versatile
Express simulator.
See the following announce email for more informations about what we
are trying to achieve, as well as the original git history:
See
2011 Dec 06
57
[PATCH RFC 00/25] xen: ARMv7 with virtualization extensions
Hello everyone,
this is the very first version of the patch series that introduces ARMv7
with virtualization extensions support in Xen.
The series allows Xen and Dom0 to boot on a Cortex-A15 based Versatile
Express simulator.
See the following announce email for more informations about what we
are trying to achieve, as well as the original git history:
See