powerpc/mm/hash: Abstract context id allocation for KVM
authorMichael Ellerman <mpe@ellerman.id.au>
Wed, 29 Mar 2017 11:00:46 +0000 (22:00 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Fri, 31 Mar 2017 12:09:57 +0000 (23:09 +1100)
KVM wants to be able to allocate an MMU context id, which it does
currently by calling __init_new_context().

We're about to rework that code, so provide a wrapper for KVM so it
can not worry about the details.

Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/include/asm/mmu_context.h
arch/powerpc/kvm/book3s_64_mmu_host.c
arch/powerpc/mm/mmu_context_book3s64.c

index b9e3f0aca261da2233a086cb41150bc3afacb9dc..7d721101ec78dfa08c9a111fef8dc1c6b20aeb62 100644 (file)
@@ -51,7 +51,7 @@ static inline void switch_mmu_context(struct mm_struct *prev,
        return switch_slb(tsk, next);
 }
 
-extern int __init_new_context(void);
+extern int hash__alloc_context_id(void);
 extern void __destroy_context(int context_id);
 static inline void mmu_context_init(void) { }
 #else
index a587e8f4fd2648caf61535176ef5a1d03a2c79ae..b35f44c98d1feaaa3bea8ed4468b58cb8a6ca0b4 100644 (file)
@@ -390,7 +390,7 @@ int kvmppc_mmu_init(struct kvm_vcpu *vcpu)
        struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
        int err;
 
-       err = __init_new_context();
+       err = hash__alloc_context_id();
        if (err < 0)
                return -1;
        vcpu3s->context_id[0] = err;
index 73bf6e14c3aa04c082921c3691c2cd48320c2892..650a498b1de9b449356c976b4ba6770e842050e5 100644 (file)
@@ -30,7 +30,7 @@
 static DEFINE_SPINLOCK(mmu_context_lock);
 static DEFINE_IDA(mmu_context_ida);
 
-int __init_new_context(void)
+static int __init_new_context(void)
 {
        int index;
        int err;
@@ -57,7 +57,13 @@ again:
 
        return index;
 }
-EXPORT_SYMBOL_GPL(__init_new_context);
+
+int hash__alloc_context_id(void)
+{
+       return __init_new_context();
+}
+EXPORT_SYMBOL_GPL(hash__alloc_context_id);
+
 static int radix__init_new_context(struct mm_struct *mm, int index)
 {
        unsigned long rts_field;