Lines Matching refs:gebase
249 void *gebase; in kvm_arch_vcpu_create() local
278 gebase = kzalloc(ALIGN(size, PAGE_SIZE), GFP_KERNEL); in kvm_arch_vcpu_create()
280 if (!gebase) { in kvm_arch_vcpu_create()
285 ALIGN(size, PAGE_SIZE), gebase); in kvm_arch_vcpu_create()
288 vcpu->arch.guest_ebase = gebase; in kvm_arch_vcpu_create()
293 memcpy(gebase, mips32_exception, in kvm_arch_vcpu_create()
297 memcpy(gebase + 0x180, mips32_exception, in kvm_arch_vcpu_create()
303 gebase + 0x200 + (i * VECTORSPACING)); in kvm_arch_vcpu_create()
304 memcpy(gebase + 0x200 + (i * VECTORSPACING), mips32_exception, in kvm_arch_vcpu_create()
311 gebase + offset, in kvm_arch_vcpu_create()
314 memcpy(gebase + offset, mips32_GuestException, in kvm_arch_vcpu_create()
318 local_flush_icache_range((unsigned long)gebase, in kvm_arch_vcpu_create()
319 (unsigned long)gebase + ALIGN(size, PAGE_SIZE)); in kvm_arch_vcpu_create()
344 kfree(gebase); in kvm_arch_vcpu_create()