Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge git://git.kernel.org/pub/scm/virt/kvm/kvm

Pull one kvm bugfix from Gleb Natapov.

* git://git.kernel.org/pub/scm/virt/kvm/kvm:
x86/kvm: Fix pvclock vsyscall fixmap

+1 -1
+1 -1
arch/x86/kernel/pvclock.c
··· 185 185 186 186 for (idx = 0; idx <= (PVCLOCK_FIXMAP_END-PVCLOCK_FIXMAP_BEGIN); idx++) { 187 187 __set_fixmap(PVCLOCK_FIXMAP_BEGIN + idx, 188 - __pa_symbol(i) + (idx*PAGE_SIZE), 188 + __pa(i) + (idx*PAGE_SIZE), 189 189 PAGE_KERNEL_VVAR); 190 190 } 191 191