powerpc/mm: Replace open coded CONTEXT_BITS value
authorAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Mon, 10 Sep 2012 02:52:47 +0000 (02:52 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Mon, 17 Sep 2012 06:31:48 +0000 (16:31 +1000)
To clarify the meaning for future readers, replace the open coded
19 with CONTEXT_BITS

Reviewed-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/mm/mmu_context_hash64.c

index 40677aa0190e53b4013ddb535a181cda13390e63..daa076c9025caf42bea1175029d778cedbbbb60a 100644 (file)
@@ -34,7 +34,7 @@ static DEFINE_IDA(mmu_context_ida);
  * Each segment contains 2^28 bytes.  Each context maps 2^44 bytes,
  * so we can support 2^19-1 contexts (19 == 35 + 28 - 44).
  */
-#define MAX_CONTEXT    ((1UL << 19) - 1)
+#define MAX_CONTEXT    ((1UL << CONTEXT_BITS) - 1)
 
 int __init_new_context(void)
 {
This page took 0.024798 seconds and 5 git commands to generate.