arch/arm/include/asm/hugetlb.h

Source file repositories/reference/linux-study-clean/arch/arm/include/asm/hugetlb.h

File Facts

System
Linux kernel
Corpus path
arch/arm/include/asm/hugetlb.h
Extension
.h
Size
543 bytes
Lines
25
Domain
Architecture Layer
Bucket
arch/arm
Inferred role
Architecture Layer: implementation source
Status
source implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef _ASM_ARM_HUGETLB_H
#define _ASM_ARM_HUGETLB_H

#include <asm/cacheflush.h>
#include <asm/page.h>
#include <asm/hugetlb-3level.h>
#include <asm-generic/hugetlb.h>

static inline void arch_clear_hugetlb_flags(struct folio *folio)
{
	clear_bit(PG_dcache_clean, &folio->flags.f);
}
#define arch_clear_hugetlb_flags arch_clear_hugetlb_flags

#endif /* _ASM_ARM_HUGETLB_H */

Annotation

Implementation Notes