tools/testing/memblock/main.c
Source file repositories/reference/linux-study-clean/tools/testing/memblock/main.c
File Facts
- System
- Linux kernel
- Corpus path
tools/testing/memblock/main.c- Extension
.c- Size
- 464 bytes
- Lines
- 20
- Domain
- Support Tooling And Documentation
- Bucket
- tools
- Inferred role
- Support Tooling And Documentation: implementation source
- Status
- source implementation candidate
Why This File Exists
Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
Dependency Surface
tests/basic_api.htests/alloc_api.htests/alloc_helpers_api.htests/alloc_nid_api.htests/alloc_exact_nid_api.htests/common.h
Detected Declarations
function main
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-or-later
#include "tests/basic_api.h"
#include "tests/alloc_api.h"
#include "tests/alloc_helpers_api.h"
#include "tests/alloc_nid_api.h"
#include "tests/alloc_exact_nid_api.h"
#include "tests/common.h"
int main(int argc, char **argv)
{
parse_args(argc, argv);
memblock_basic_checks();
memblock_alloc_checks();
memblock_alloc_helpers_checks();
memblock_alloc_nid_checks();
memblock_alloc_exact_nid_checks();
return 0;
}
Annotation
- Immediate include surface: `tests/basic_api.h`, `tests/alloc_api.h`, `tests/alloc_helpers_api.h`, `tests/alloc_nid_api.h`, `tests/alloc_exact_nid_api.h`, `tests/common.h`.
- Detected declarations: `function main`.
- Atlas domain: Support Tooling And Documentation / tools.
- 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.