[PATCH] ARC: add hugetlb definitions

Pavel Kozlov posted 1 patch 2 years ago
arch/arc/include/asm/hugepage.h | 7 +++++++
1 file changed, 7 insertions(+)
[PATCH] ARC: add hugetlb definitions
Posted by Pavel Kozlov 2 years ago
From: Pavel Kozlov <pavel.kozlov@synopsys.com>

Add hugetlb definitions if THP enabled. ARC doesn't support
HugeTLB FS but it supports THP. Some kernel code such as pagemap
uses hugetlb definitions with THP.

This patch fixes ARC build issue (HPAGE_SIZE undeclared error) with
TRANSPARENT_HUGEPAGE enabled.

Signed-off-by: Pavel Kozlov <pavel.kozlov@synopsys.com>
---
 arch/arc/include/asm/hugepage.h | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/arch/arc/include/asm/hugepage.h b/arch/arc/include/asm/hugepage.h
index ef8d4166370c..8a2441670a8f 100644
--- a/arch/arc/include/asm/hugepage.h
+++ b/arch/arc/include/asm/hugepage.h
@@ -10,6 +10,13 @@
 #include <linux/types.h>
 #include <asm-generic/pgtable-nopmd.h>
 
+/*
+ * Hugetlb definitions.
+ */
+#define HPAGE_SHIFT		PMD_SHIFT
+#define HPAGE_SIZE		(_AC(1, UL) << HPAGE_SHIFT)
+#define HPAGE_MASK		(~(HPAGE_SIZE - 1))
+
 static inline pte_t pmd_pte(pmd_t pmd)
 {
 	return __pte(pmd_val(pmd));
-- 
2.25.1
Re: [PATCH] ARC: add hugetlb definitions
Posted by Vineet Gupta 2 years ago

On 12/13/23 07:07, Pavel Kozlov wrote:
> From: Pavel Kozlov <pavel.kozlov@synopsys.com>
>
> Add hugetlb definitions if THP enabled. ARC doesn't support
> HugeTLB FS but it supports THP. Some kernel code such as pagemap
> uses hugetlb definitions with THP.
>
> This patch fixes ARC build issue (HPAGE_SIZE undeclared error) with
> TRANSPARENT_HUGEPAGE enabled.
>
> Signed-off-by: Pavel Kozlov <pavel.kozlov@synopsys.com>

Added to for-curr.

I'll pile this will rest of patches for some linux-next soaking.

Thx,
-Vineet