aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/lguest/hypercalls.c
Commit message (Expand)AuthorAge
* lguest: Use explicit includes rateher than indirectGlauber de Oliveira Costa2008-01-30
* lguest: get rid of lg variable assignmentsGlauber de Oliveira Costa2008-01-30
* lguest: per-vcpu lguest pgdir managementGlauber de Oliveira Costa2008-01-30
* lguest: make pending notifications per-vcpuGlauber de Oliveira Costa2008-01-30
* lguest: makes special fields be per-vcpuGlauber de Oliveira Costa2008-01-30
* lguest: per-vcpu lguest task managementGlauber de Oliveira Costa2008-01-30
* lguest: per-vcpu lguest timersGlauber de Oliveira Costa2008-01-30
* lguest: make hypercalls use the vcpu structGlauber de Oliveira Costa2008-01-30
* lguest: Reboot supportBalaji Rao2008-01-30
* lguest: documentation updateRusty Russell2007-10-25
* generalize lgread_u32/lgwrite_u32.Rusty Russell2007-10-23
* Remove old lguest I/O infrrasructure.Rusty Russell2007-10-23
* Boot with virtual == physical to get closer to native Linux.Rusty Russell2007-10-23
* Pagetables to use normal kernel typesMatias Zabaljauregui2007-10-23
* Make hypercalls arch-independent.Jes Sorensen2007-10-23
* Introduce "hcall" pointer to indicate pending hypercall.Rusty Russell2007-10-23
* Remove fixed limit on number of guests, and lguests array.Rusty Russell2007-10-23
* Introduce guest mem offset, static link example launcherRusty Russell2007-10-23
* Use copy_to_user() not put_user for struct timespecJes Sorensen2007-10-23
* Provide timespec to guests rather than jiffies clock.Rusty Russell2007-07-28
* lguest: documentation V: HostRusty Russell2007-07-26
* lguest: documentation I: PreparationRusty Russell2007-07-26
* lguest: the host codeRusty Russell2007-07-19
#define __pmd(x) ((pmd_t) { (x) } ) typedef unsigned long long pfn_t; typedef unsigned long long phys_t; #else typedef struct { unsigned long pte; } pte_t; typedef struct { unsigned long pgd; } pgd_t; #ifdef CONFIG_3_LEVEL_PGTABLES typedef struct { unsigned long pmd; } pmd_t; #define pmd_val(x) ((x).pmd) #define __pmd(x) ((pmd_t) { (x) } ) #endif #define pte_val(x) ((x).pte) #define pte_get_bits(p, bits) ((p).pte & (bits)) #define pte_set_bits(p, bits) ((p).pte |= (bits)) #define pte_clear_bits(p, bits) ((p).pte &= ~(bits)) #define pte_copy(to, from) ((to).pte = (from).pte) #define pte_is_zero(p) (!((p).pte & ~_PAGE_NEWPAGE)) #define pte_set_val(p, phys, prot) (p).pte = (phys | pgprot_val(prot)) typedef unsigned long pfn_t; typedef unsigned long phys_t; #endif typedef struct { unsigned long pgprot; } pgprot_t; #define pgd_val(x) ((x).pgd) #define pgprot_val(x) ((x).pgprot) #define __pte(x) ((pte_t) { (x) } ) #define __pgd(x) ((pgd_t) { (x) } ) #define __pgprot(x) ((pgprot_t) { (x) } ) /* to align the pointer to the (next) page boundary */ #define PAGE_ALIGN(addr) (((addr)+PAGE_SIZE-1)&PAGE_MASK) extern unsigned long uml_physmem; #define PAGE_OFFSET (uml_physmem) #define KERNELBASE PAGE_OFFSET #define __va_space (8*1024*1024) #include "mem.h" /* Cast to unsigned long before casting to void * to avoid a warning from * mmap_kmem about cutting a long long down to a void *. Not sure that * casting is the right thing, but 32-bit UML can't have 64-bit virtual * addresses */ #define __pa(virt) to_phys((void *) (unsigned long) (virt)) #define __va(phys) to_virt((unsigned long) (phys)) #define phys_to_pfn(p) ((pfn_t) ((p) >> PAGE_SHIFT)) #define pfn_to_phys(pfn) ((phys_t) ((pfn) << PAGE_SHIFT)) #define pfn_valid(pfn) ((pfn) < max_mapnr) #define virt_addr_valid(v) pfn_valid(phys_to_pfn(__pa(v))) extern struct page *arch_validate(struct page *page, gfp_t mask, int order); #define HAVE_ARCH_VALIDATE #include <asm-generic/memory_model.h> #include <asm-generic/page.h> #endif