aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/lguest/page_tables.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2014-04-07drivers/lguest/page_tables.c: rename do_set_pte()Andrew Morton1-3/+3
2013-09-06lguest: fix BUG_ON() in invalid guest page table.Rusty Russell1-1/+3
2013-05-29lguest: fix CONFIG_PAE -> CONFIG_x86_PAE in commentPaul Bolle1-1/+1
2013-05-08lguest: clear cached last cpu when guest_set_pgd() called.Rusty Russell1-0/+1
2013-05-02Merge tag 'virtio-next-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linuxLinus Torvalds1-263/+304
2013-04-29lguest: rename random32() to prandom_u32()Akinobu Mita1-1/+1
2013-04-22lguest: cache last cpu we ran on.Rusty Russell1-25/+53
2013-04-22lguest: map Switcher text whenever we allocate a new pagetable.Rusty Russell1-10/+32
2013-04-22lguest: don't share Switcher PTE pages between guests.Rusty Russell1-154/+106
2013-04-22lguest: extract shadow PTE walking / allocating.Rusty Russell1-69/+101
2013-04-22lguest: make check_gpte et. al return bool.Rusty Russell1-10/+23
2013-04-22lguest: assume Switcher text is a single page.Rusty Russell1-13/+8
2013-04-22lguest: rename switcher_page to switcher_pages.Rusty Russell1-6/+6
2013-04-22lguest: remove RESERVE_MEM constant.Rusty Russell1-7/+11
2013-04-22lguest: check vaddr not pgd for Switcher protection.Rusty Russell1-21/+16
2011-07-22lguest: update commentsRusty Russell1-2/+2
2011-07-22lguest: use a special 1:1 linear pagetable mode until first switch.Rusty Russell1-194/+84
2011-01-20lguest: Use this_cpu_opsChristoph Lameter1-1/+1
2010-03-30include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.hTejun Heo1-0/+1
2009-09-23Merge git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linusLinus Torvalds1-26/+19
2009-09-23lguest: use PGDIR_SHIFT for PAE code to allow different PAGE_OFFSETRusty Russell1-4/+2
2009-09-23lguest: use set_pte/set_pmd uniformly for real page table entriesRusty Russell1-22/+17
2009-09-21trivial: fix typo "to to" in multiple filesAnand Gadiyar1-1/+1
2009-07-30lguest: update commentryRusty Russell1-19/+65
2009-07-30lguest: fix comment styleRusty Russell1-145/+282
2009-06-12lguest: PAE fixesRusty Russell1-17/+21
2009-06-12lguest: PAE supportMatias Zabaljauregui1-38/+313
2009-06-12lguest: replace hypercall name LHCALL_SET_PMD with LHCALL_SET_PGDMatias Zabaljauregui1-1/+1
2009-06-12lguest: use native_set_* macros, which properly handle 64-bit entries when PAE is activatedMatias Zabaljauregui1-17/+18
2009-06-12lguest: map switcher with executable page table entriesMatias Zabaljauregui1-1/+1
2009-03-30lguest: use bool instead of intMatias Zabaljauregui1-9/+9
2009-03-30lguest: fix spurious BUG_ON() on invalid guest stack.Rusty Russell1-1/+3
2008-12-30lguest: move the initial guest page table creation code to the hostMatias Zabaljauregui1-2/+70
2008-08-12lguest: use get_user_pages_fast() instead of get_user_pages()Rusty Russell1-16/+9
2008-03-28lguest: comment documentation update.Rusty Russell1-14/+18
2008-03-11lguest: Revert 1ce70c4fac3c3954bd48c035f448793867592bc0, fix real problem.Rusty Russell1-1/+1
2008-02-09lguest: accept guest _PAGE_PWT page table entriesAhmed S. Darwish1-2/+2
2008-01-30lguest: use __PAGE_KERNEL instead of _PAGE_KERNELGlauber de Oliveira Costa1-2/+2
2008-01-30lguest: get rid of lg variable assignmentsGlauber de Oliveira Costa1-57/+58
2008-01-30lguest: change gpte_addr headerGlauber de Oliveira Costa1-4/+3
2008-01-30lguest: change spte_addr headerGlauber de Oliveira Costa1-4/+4
2008-01-30lguest: per-vcpu lguest pgdir managementGlauber de Oliveira Costa1-29/+30
2008-01-30lguest: makes special fields be per-vcpuGlauber de Oliveira Costa1-5/+6
2008-01-30lguest: make registers per-vcpuGlauber de Oliveira Costa1-1/+3
2008-01-30lguest: map_switcher_in_guest() per-vcpuGlauber de Oliveira Costa1-1/+2
2007-10-25lguest: documentation updateRusty Russell1-41/+72
2007-10-23generalize lgread_u32/lgwrite_u32.Rusty Russell1-5/+5
2007-10-23Boot with virtual == physical to get closer to native Linux.Rusty Russell1-7/+40
2007-10-23Rename "cr3" to "gpgdir" to avoid x86-specific naming.Rusty Russell1-9/+9
2007-10-23Pagetables to use normal kernel typesMatias Zabaljauregui1-103/+89