arch/x86/include/asm/vdso.h
Source file repositories/reference/linux-study-clean/arch/x86/include/asm/vdso.h
File Facts
- System
- Linux kernel
- Corpus path
arch/x86/include/asm/vdso.h- Extension
.h- Size
- 1267 bytes
- Lines
- 47
- Domain
- Architecture Layer
- Bucket
- arch/x86
- 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
asm/page_types.hlinux/linkage.hlinux/init.hlinux/mm_types.h
Detected Declarations
struct vdso_image
Annotated Snippet
struct vdso_image {
void *data;
unsigned long size; /* Always a multiple of PAGE_SIZE */
unsigned long alt, alt_len;
unsigned long extable_base, extable_len;
const void *extable;
long sym___kernel_sigreturn;
long sym___kernel_rt_sigreturn;
long sym___kernel_vsyscall;
long sym_int80_landing_pad;
long sym_vdso32_sigreturn_landing_pad;
long sym_vdso32_rt_sigreturn_landing_pad;
long sym___futex_list64_try_unlock_cs_start;
long sym___futex_list64_try_unlock_cs_end;
long sym___futex_list32_try_unlock_cs_start;
long sym___futex_list32_try_unlock_cs_end;
};
extern const struct vdso_image vdso64_image;
extern const struct vdso_image vdsox32_image;
extern const struct vdso_image vdso32_image;
extern int __init init_vdso_image(const struct vdso_image *image);
extern int map_vdso_once(const struct vdso_image *image, unsigned long addr);
extern bool fixup_vdso_exception(struct pt_regs *regs, int trapnr,
unsigned long error_code,
unsigned long fault_addr);
#endif /* __ASSEMBLER__ */
#endif /* _ASM_X86_VDSO_H */
Annotation
- Immediate include surface: `asm/page_types.h`, `linux/linkage.h`, `linux/init.h`, `linux/mm_types.h`.
- Detected declarations: `struct vdso_image`.
- Atlas domain: Architecture Layer / arch/x86.
- 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.