search for: privcmd_hypercall_t

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

2005 Aug 27
1
problems getting xen going on FC4
...th a xen-testing from source build. Now when I do "make tools" in the -testing directory I get: [...] In file included from xc_atropos.c:9: xc_private.h:19:31: xen/linux/privcmd.h: No such file or directory In file included from xc_atropos.c:9: xc_private.h:66: syntax error before "privcmd_hypercall_t" xc_private.h: In function `do_xen_hypercall'': xc_private.h:68: `xc_handle'' undeclared (first use in this function) xc_private.h:68: (Each undeclared identifier is reported only once xc_private.h:68: for each function it appears in.) xc_private.h:69: `IOCTL_PRIVCMD_HYPERCALL&...
2007 Apr 18
1
[rfc][patch][linux] ioctl32() compat plumbing for xen calls
...ivcmd.h Thu Jul 13 11:51:38 2006 -0400 @@ -34,35 +34,61 @@ #define __LINUX_PUBLIC_PRIVCMD_H__ #include <linux/types.h> +#include <linux/compat.h> #ifndef __user #define __user #endif -typedef struct privcmd_hypercall +struct privcmd_hypercall { __u64 op; __u64 arg[5]; -} privcmd_hypercall_t; +}; +typedef struct privcmd_hypercall privcmd_hypercall_t; -typedef struct privcmd_mmap_entry { +struct privcmd_mmap_entry { __u64 va; __u64 mfn; __u64 npages; -} privcmd_mmap_entry_t; +}; +typedef struct privcmd_mmap_entry privcmd_mmap_entry_t; -typedef struct privcmd_mmap { +struct p...