arch/xtensa/include/asm/pgalloc.h
Source file repositories/reference/linux-study-clean/arch/xtensa/include/asm/pgalloc.h
File Facts
- System
- Linux kernel
- Corpus path
arch/xtensa/include/asm/pgalloc.h- Extension
.h- Size
- 1362 bytes
- Lines
- 68
- Domain
- Architecture Layer
- Bucket
- arch/xtensa
- 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.
- CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/highmem.hlinux/slab.hasm-generic/pgalloc.h
Detected Declarations
function Copyrightfunction ptes_clearfunction pte_alloc_one
Annotated Snippet
#ifndef _XTENSA_PGALLOC_H
#define _XTENSA_PGALLOC_H
#ifdef CONFIG_MMU
#include <linux/highmem.h>
#include <linux/slab.h>
#define __HAVE_ARCH_PTE_ALLOC_ONE_KERNEL
#define __HAVE_ARCH_PTE_ALLOC_ONE
#include <asm-generic/pgalloc.h>
/*
* Allocating and freeing a pmd is trivial: the 1-entry pmd is
* inside the pgd, so has no extra memory associated with it.
*/
#define pmd_populate_kernel(mm, pmdp, ptep) \
(pmd_val(*(pmdp)) = ((unsigned long)ptep))
#define pmd_populate(mm, pmdp, page) \
(pmd_val(*(pmdp)) = ((unsigned long)page_to_virt(page)))
static inline pgd_t*
pgd_alloc(struct mm_struct *mm)
{
return __pgd_alloc(mm, 0);
}
static inline void ptes_clear(pte_t *ptep)
{
int i;
for (i = 0; i < PTRS_PER_PTE; i++)
pte_clear(NULL, 0, ptep + i);
}
static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm)
{
pte_t *ptep;
ptep = (pte_t *)__pte_alloc_one_kernel(mm);
if (!ptep)
return NULL;
ptes_clear(ptep);
return ptep;
}
static inline pgtable_t pte_alloc_one(struct mm_struct *mm)
{
struct page *page;
page = __pte_alloc_one(mm, GFP_PGTABLE_USER);
if (!page)
return NULL;
ptes_clear(page_address(page));
return page;
}
#endif /* CONFIG_MMU */
#endif /* _XTENSA_PGALLOC_H */
Annotation
- Immediate include surface: `linux/highmem.h`, `linux/slab.h`, `asm-generic/pgalloc.h`.
- Detected declarations: `function Copyright`, `function ptes_clear`, `function pte_alloc_one`.
- Atlas domain: Architecture Layer / arch/xtensa.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.