arch/s390/kernel/jump_label.c
Source file repositories/reference/linux-study-clean/arch/s390/kernel/jump_label.c
File Facts
- System
- Linux kernel
- Corpus path
arch/s390/kernel/jump_label.c- Extension
.c- Size
- 2069 bytes
- Lines
- 83
- Domain
- Architecture Layer
- Bucket
- arch/s390
- 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/uaccess.hlinux/jump_label.hlinux/module.hasm/text-patching.hasm/ipl.h
Detected Declarations
struct insnfunction jump_label_make_nopfunction jump_label_make_branchfunction jump_label_bugfunction jump_label_transformfunction arch_jump_label_transformfunction arch_jump_label_transform_queuefunction arch_jump_label_transform_apply
Annotated Snippet
struct insn {
u16 opcode;
s32 offset;
} __packed;
static void jump_label_make_nop(struct jump_entry *entry, struct insn *insn)
{
/* brcl 0,offset */
insn->opcode = 0xc004;
insn->offset = (jump_entry_target(entry) - jump_entry_code(entry)) >> 1;
}
static void jump_label_make_branch(struct jump_entry *entry, struct insn *insn)
{
/* brcl 15,offset */
insn->opcode = 0xc0f4;
insn->offset = (jump_entry_target(entry) - jump_entry_code(entry)) >> 1;
}
static void jump_label_bug(struct jump_entry *entry, struct insn *expected,
struct insn *new)
{
unsigned char *ipc = (unsigned char *)jump_entry_code(entry);
unsigned char *ipe = (unsigned char *)expected;
unsigned char *ipn = (unsigned char *)new;
pr_emerg("Jump label code mismatch at %pS [%px]\n", ipc, ipc);
pr_emerg("Found: %6ph\n", ipc);
pr_emerg("Expected: %6ph\n", ipe);
pr_emerg("New: %6ph\n", ipn);
panic("Corrupted kernel text");
}
static void jump_label_transform(struct jump_entry *entry,
enum jump_label_type type)
{
void *code = (void *)jump_entry_code(entry);
struct insn old, new;
if (type == JUMP_LABEL_JMP) {
jump_label_make_nop(entry, &old);
jump_label_make_branch(entry, &new);
} else {
jump_label_make_branch(entry, &old);
jump_label_make_nop(entry, &new);
}
if (memcmp(code, &old, sizeof(old)))
jump_label_bug(entry, &old, &new);
s390_kernel_write(code, &new, sizeof(new));
}
void arch_jump_label_transform(struct jump_entry *entry,
enum jump_label_type type)
{
jump_label_transform(entry, type);
text_poke_sync();
}
bool arch_jump_label_transform_queue(struct jump_entry *entry,
enum jump_label_type type)
{
jump_label_transform(entry, type);
return true;
}
void arch_jump_label_transform_apply(void)
{
text_poke_sync();
}
Annotation
- Immediate include surface: `linux/uaccess.h`, `linux/jump_label.h`, `linux/module.h`, `asm/text-patching.h`, `asm/ipl.h`.
- Detected declarations: `struct insn`, `function jump_label_make_nop`, `function jump_label_make_branch`, `function jump_label_bug`, `function jump_label_transform`, `function arch_jump_label_transform`, `function arch_jump_label_transform_queue`, `function arch_jump_label_transform_apply`.
- Atlas domain: Architecture Layer / arch/s390.
- 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.