Displaying 1 result from an estimated 1 matches for "privcmd_mmap_entry".
Did you mean:
privcmd_mmap_entry_t
2007 Apr 18
1
[rfc][patch][linux] ioctl32() compat plumbing for xen calls
...#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 privcmd_mmap {
int num;
domid_t dom; /* target domain */
privcmd_mmap_entry_t __user *entry;...