Lines Matching refs:gebase
247 void *gebase; in kvm_arch_vcpu_create() local
276 gebase = kzalloc(ALIGN(size, PAGE_SIZE), GFP_KERNEL); in kvm_arch_vcpu_create()
278 if (!gebase) { in kvm_arch_vcpu_create()
283 ALIGN(size, PAGE_SIZE), gebase); in kvm_arch_vcpu_create()
286 vcpu->arch.guest_ebase = gebase; in kvm_arch_vcpu_create()
291 memcpy(gebase, mips32_exception, in kvm_arch_vcpu_create()
295 memcpy(gebase + 0x180, mips32_exception, in kvm_arch_vcpu_create()
301 gebase + 0x200 + (i * VECTORSPACING)); in kvm_arch_vcpu_create()
302 memcpy(gebase + 0x200 + (i * VECTORSPACING), mips32_exception, in kvm_arch_vcpu_create()
309 gebase + offset, in kvm_arch_vcpu_create()
312 memcpy(gebase + offset, mips32_GuestException, in kvm_arch_vcpu_create()
316 local_flush_icache_range((unsigned long)gebase, in kvm_arch_vcpu_create()
317 (unsigned long)gebase + ALIGN(size, PAGE_SIZE)); in kvm_arch_vcpu_create()
342 kfree(gebase); in kvm_arch_vcpu_create()