blob: 318dcf5921aba492a8a6582aebb15b78fe7a22b0 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-only */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * arch/arm/include/asm/hugetlb.h
4 *
5 * Copyright (C) 2012 ARM Ltd.
6 *
7 * Based on arch/x86/include/asm/hugetlb.h
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00008 */
9
10#ifndef _ASM_ARM_HUGETLB_H
11#define _ASM_ARM_HUGETLB_H
12
13#include <asm/page.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000014#include <asm/hugetlb-3level.h>
David Brazdil0f672f62019-12-10 10:32:29 +000015#include <asm-generic/hugetlb.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000016
17static inline int is_hugepage_only_range(struct mm_struct *mm,
18 unsigned long addr, unsigned long len)
19{
20 return 0;
21}
22
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000023static inline void arch_clear_hugepage_flags(struct page *page)
24{
25 clear_bit(PG_dcache_clean, &page->flags);
26}
27
28#endif /* _ASM_ARM_HUGETLB_H */