tools/testing/selftests/kho/init.c
Source file repositories/reference/linux-study-clean/tools/testing/selftests/kho/init.c
File Facts
- System
- Linux kernel
- Corpus path
tools/testing/selftests/kho/init.c- Extension
.c- Size
- 1387 bytes
- Lines
- 76
- 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
stdio.hunistd.hfcntl.hsys/syscall.hsys/mount.hsys/reboot.hlinux/kexec.h
Detected Declarations
function mount_filesystemsfunction kexec_file_loadfunction kexec_loadfunction main
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/syscall.h>
#include <sys/mount.h>
#include <sys/reboot.h>
#include <linux/kexec.h>
/* from arch/x86/include/asm/setup.h */
#define COMMAND_LINE_SIZE 2048
#define KERNEL_IMAGE "/kernel"
static int mount_filesystems(void)
{
if (mount("debugfs", "/debugfs", "debugfs", 0, NULL) < 0)
return -1;
return mount("proc", "/proc", "proc", 0, NULL);
}
static long kexec_file_load(int kernel_fd, int initrd_fd,
unsigned long cmdline_len, const char *cmdline,
unsigned long flags)
{
return syscall(__NR_kexec_file_load, kernel_fd, initrd_fd, cmdline_len,
cmdline, flags);
}
static int kexec_load(void)
{
char cmdline[COMMAND_LINE_SIZE];
ssize_t len;
int fd, err;
fd = open("/proc/cmdline", O_RDONLY);
if (fd < 0)
return -1;
len = read(fd, cmdline, sizeof(cmdline));
close(fd);
if (len < 0)
return -1;
/* replace \n with \0 */
cmdline[len - 1] = 0;
fd = open(KERNEL_IMAGE, O_RDONLY);
if (fd < 0)
return -1;
err = kexec_file_load(fd, -1, len, cmdline, KEXEC_FILE_NO_INITRAMFS);
close(fd);
return err ? : 0;
}
int main(int argc, char *argv[])
{
if (mount_filesystems())
goto err_reboot;
if (kexec_load())
goto err_reboot;
if (reboot(RB_KEXEC))
goto err_reboot;
return 0;
err_reboot:
reboot(RB_AUTOBOOT);
return -1;
}
Annotation
- Immediate include surface: `stdio.h`, `unistd.h`, `fcntl.h`, `sys/syscall.h`, `sys/mount.h`, `sys/reboot.h`, `linux/kexec.h`.
- Detected declarations: `function mount_filesystems`, `function kexec_file_load`, `function kexec_load`, `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.