mm/page_reporting.h
Source file repositories/reference/linux-study-clean/mm/page_reporting.h
File Facts
- System
- Linux kernel
- Corpus path
mm/page_reporting.h- Extension
.h- Size
- 1635 bytes
- Lines
- 54
- Domain
- Core OS
- Bucket
- Memory Management
- Inferred role
- Core OS: implementation source
- Status
- source implementation candidate
Why This File Exists
Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/mmzone.hlinux/pageblock-flags.hlinux/page-isolation.hlinux/jump_label.hlinux/slab.hlinux/pgtable.hlinux/scatterlist.h
Detected Declarations
function page_reportedfunction page_reporting_notify_freefunction page_reporting_notify_free
Annotated Snippet
#ifndef _MM_PAGE_REPORTING_H
#define _MM_PAGE_REPORTING_H
#include <linux/mmzone.h>
#include <linux/pageblock-flags.h>
#include <linux/page-isolation.h>
#include <linux/jump_label.h>
#include <linux/slab.h>
#include <linux/pgtable.h>
#include <linux/scatterlist.h>
#ifdef CONFIG_PAGE_REPORTING
DECLARE_STATIC_KEY_FALSE(page_reporting_enabled);
extern unsigned int page_reporting_order;
void __page_reporting_notify(void);
static inline bool page_reported(struct page *page)
{
return static_branch_unlikely(&page_reporting_enabled) &&
PageReported(page);
}
/**
* page_reporting_notify_free - Free page notification to start page processing
*
* This function is meant to act as a screener for __page_reporting_notify
* which will determine if a give zone has crossed over the high-water mark
* that will justify us beginning page treatment. If we have crossed that
* threshold then it will start the process of pulling some pages and
* placing them in the batch list for treatment.
*/
static inline void page_reporting_notify_free(unsigned int order)
{
/* Called from hot path in __free_one_page() */
if (!static_branch_unlikely(&page_reporting_enabled))
return;
/* Determine if we have crossed reporting threshold */
if (order < page_reporting_order)
return;
/* This will add a few cycles, but should be called infrequently */
__page_reporting_notify();
}
#else /* CONFIG_PAGE_REPORTING */
#define page_reported(_page) false
static inline void page_reporting_notify_free(unsigned int order)
{
}
#endif /* CONFIG_PAGE_REPORTING */
#endif /*_MM_PAGE_REPORTING_H */
Annotation
- Immediate include surface: `linux/mmzone.h`, `linux/pageblock-flags.h`, `linux/page-isolation.h`, `linux/jump_label.h`, `linux/slab.h`, `linux/pgtable.h`, `linux/scatterlist.h`.
- Detected declarations: `function page_reported`, `function page_reporting_notify_free`, `function page_reporting_notify_free`.
- Atlas domain: Core OS / Memory Management.
- 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.