arch/x86/um/asm/vm-flags.h

Source file repositories/reference/linux-study-clean/arch/x86/um/asm/vm-flags.h

File Facts

System
Linux kernel
Corpus path
arch/x86/um/asm/vm-flags.h
Extension
.h
Size
360 bytes
Lines
20
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.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef __VM_FLAGS_X86_H
#define __VM_FLAGS_X86_H

#ifdef CONFIG_X86_32

#define VMA_DATA_DEFAULT_FLAGS	VMA_DATA_FLAGS_TSK_EXEC

#else

#define VMA_STACK_DEFAULT_FLAGS append_vma_flags(VMA_DATA_FLAGS_EXEC, VMA_GROWSDOWN_BIT)

#endif
#endif

Annotation

Implementation Notes