···53 * have elapsed since the hypervisor wrote the data. So we try to account for54 * that with system time55 */56-unsigned long kvm_get_wallclock(void)57{58 u32 wc_sec, wc_nsec;59 u64 delta;···86 return ts.tv_sec + 1;87}8889-int kvm_set_wallclock(unsigned long now)90{91 return 0;92}
···53 * have elapsed since the hypervisor wrote the data. So we try to account for54 * that with system time55 */56+static unsigned long kvm_get_wallclock(void)57{58 u32 wc_sec, wc_nsec;59 u64 delta;···86 return ts.tv_sec + 1;87}8889+static int kvm_set_wallclock(unsigned long now)90{91 return 0;92}
+1-1
arch/x86/kvm/mmu.c
···1996 .seeks = DEFAULT_SEEKS * 10,1997};19981999-void mmu_destroy_caches(void)2000{2001 if (pte_chain_cache)2002 kmem_cache_destroy(pte_chain_cache);