Commit 8e992923 authored by Ciaran McCreesh's avatar Ciaran McCreesh Committed by Keith M. Wesolowski

[SPARC64]: Fix broken _PAGE_SZHUGE defines for 512K and 64K.

parent 313c01d3
...@@ -145,9 +145,9 @@ ...@@ -145,9 +145,9 @@
#if defined(CONFIG_HUGETLB_PAGE_SIZE_4MB) #if defined(CONFIG_HUGETLB_PAGE_SIZE_4MB)
#define _PAGE_SZHUGE _PAGE_SZ4MB #define _PAGE_SZHUGE _PAGE_SZ4MB
#elif defined(CONFIG_HUGETLB_PAGE_SIZE_512K) #elif defined(CONFIG_HUGETLB_PAGE_SIZE_512K)
#define _PAGE_SZHUGE _PAGE_512K #define _PAGE_SZHUGE _PAGE_SZ512K
#elif defined(CONFIG_HUGETLB_PAGE_SIZE_64K) #elif defined(CONFIG_HUGETLB_PAGE_SIZE_64K)
#define _PAGE_SZHUGE _PAGE_64K #define _PAGE_SZHUGE _PAGE_SZ64K
#endif #endif
#define _PAGE_CACHE (_PAGE_CP | _PAGE_CV) #define _PAGE_CACHE (_PAGE_CP | _PAGE_CV)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment