powerpc/mm/hash: Rename get_ea_context to get_user_context
authorAneesh Kumar K.V <aneesh.kumar@linux.ibm.com>
Thu, 20 Sep 2018 08:33:57 +0000 (14:03 +0530)
committerMichael Ellerman <mpe@ellerman.id.au>
Sun, 14 Oct 2018 07:04:09 +0000 (18:04 +1100)
We will be adding get_kernel_context later. Update function name to indicate
this handle context allocation user space address.

Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/include/asm/book3s/64/mmu.h
arch/powerpc/include/asm/mmu_context.h
arch/powerpc/mm/slb.c

index 9c8c669a6b6a3e0dd52ad6f4e2de2c62a8965720..6328857f259f5b0abe0bf56fd88c4999d012cf80 100644 (file)
@@ -208,7 +208,7 @@ extern void radix_init_pseries(void);
 static inline void radix_init_pseries(void) { };
 #endif
 
-static inline int get_ea_context(mm_context_t *ctx, unsigned long ea)
+static inline int get_user_context(mm_context_t *ctx, unsigned long ea)
 {
        int index = ea >> MAX_EA_BITS_PER_CONTEXT;
 
@@ -223,7 +223,7 @@ static inline int get_ea_context(mm_context_t *ctx, unsigned long ea)
 static inline unsigned long get_user_vsid(mm_context_t *ctx,
                                          unsigned long ea, int ssize)
 {
-       unsigned long context = get_ea_context(ctx, ea);
+       unsigned long context = get_user_context(ctx, ea);
 
        return get_vsid(context, ea, ssize);
 }
index b2f89b621b159148c6d836e3c9c3d47a89aafe47..dbbab7ba449ba7a6e1dba222a23fbaeb0e7db33a 100644 (file)
@@ -81,7 +81,7 @@ static inline bool need_extra_context(struct mm_struct *mm, unsigned long ea)
 {
        int context_id;
 
-       context_id = get_ea_context(&mm->context, ea);
+       context_id = get_user_context(&mm->context, ea);
        if (!context_id)
                return true;
        return false;
index 4b6e7a21a7c5b8050f487308a93745b9804a5247..4fe5cb5052b6ba2aba881b8701ecc3e13343dfd8 100644 (file)
@@ -734,7 +734,7 @@ static long slb_allocate_user(struct mm_struct *mm, unsigned long ea)
        if (ea >= mm->context.slb_addr_limit)
                return -EFAULT;
 
-       context = get_ea_context(&mm->context, ea);
+       context = get_user_context(&mm->context, ea);
        if (!context)
                return -EFAULT;