arch/x86/kernel/irq_32.c
Source file repositories/reference/linux-study-clean/arch/x86/kernel/irq_32.c
File Facts
- System
- Linux kernel
- Corpus path
arch/x86/kernel/irq_32.c- Extension
.c- Size
- 4069 bytes
- Lines
- 158
- 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.
- Allocates kernel memory; connect allocation flags and lifetime to context constraints.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/seq_file.hlinux/interrupt.hlinux/irq.hlinux/kernel_stat.hlinux/notifier.hlinux/cpu.hlinux/delay.hlinux/uaccess.hlinux/percpu.hlinux/mm.hasm/apic.hasm/nospec-branch.hasm/softirq_stack.h
Detected Declarations
function check_stack_overflowfunction print_stack_overflowfunction check_stack_overflowfunction print_stack_overflowfunction call_on_stackfunction execute_on_irq_stackfunction irq_init_percpu_irqstackfunction do_softirq_own_stackfunction __handle_irq
Annotated Snippet
static inline bool check_stack_overflow(void) { return false; }
static inline void print_stack_overflow(void) { }
#endif
DEFINE_PER_CPU_CACHE_HOT(struct irq_stack *, softirq_stack_ptr);
static void call_on_stack(void *func, void *stack)
{
asm volatile("xchgl %[sp], %%esp\n"
CALL_NOSPEC
"movl %[sp], %%esp"
: [sp] "+b" (stack)
: [thunk_target] "D" (func)
: "memory", "cc", "edx", "ecx", "eax");
}
static inline void *current_stack(void)
{
return (void *)(current_stack_pointer & ~(THREAD_SIZE - 1));
}
static inline bool execute_on_irq_stack(bool overflow, struct irq_desc *desc)
{
struct irq_stack *curstk, *irqstk;
u32 *isp, *prev_esp;
curstk = (struct irq_stack *) current_stack();
irqstk = __this_cpu_read(hardirq_stack_ptr);
/*
* this is where we switch to the IRQ stack. However, if we are
* already using the IRQ stack (because we interrupted a hardirq
* handler) we can't do that and just have to keep using the
* current stack (which is the irq stack already after all)
*/
if (unlikely(curstk == irqstk))
return false;
isp = (u32 *) ((char *)irqstk + sizeof(*irqstk));
/* Save the next esp at the bottom of the stack */
prev_esp = (u32 *)irqstk;
*prev_esp = current_stack_pointer;
if (unlikely(overflow))
call_on_stack(print_stack_overflow, isp);
asm volatile("xchgl %[sp], %%esp\n"
CALL_NOSPEC
"movl %[sp], %%esp"
: "+a" (desc), [sp] "+b" (isp)
: [thunk_target] "D" (desc->handle_irq)
: "memory", "cc", "edx", "ecx");
return true;
}
/*
* Allocate per-cpu stacks for hardirq and softirq processing
*/
int irq_init_percpu_irqstack(unsigned int cpu)
{
int node = cpu_to_node(cpu);
struct page *ph, *ps;
if (per_cpu(hardirq_stack_ptr, cpu))
return 0;
ph = alloc_pages_node(node, THREADINFO_GFP, THREAD_SIZE_ORDER);
if (!ph)
return -ENOMEM;
ps = alloc_pages_node(node, THREADINFO_GFP, THREAD_SIZE_ORDER);
if (!ps) {
__free_pages(ph, THREAD_SIZE_ORDER);
return -ENOMEM;
}
per_cpu(hardirq_stack_ptr, cpu) = page_address(ph);
per_cpu(softirq_stack_ptr, cpu) = page_address(ps);
return 0;
}
#ifdef CONFIG_SOFTIRQ_ON_OWN_STACK
void do_softirq_own_stack(void)
{
struct irq_stack *irqstk;
u32 *isp, *prev_esp;
irqstk = __this_cpu_read(softirq_stack_ptr);
/* build the stack frame on the softirq stack */
Annotation
- Immediate include surface: `linux/seq_file.h`, `linux/interrupt.h`, `linux/irq.h`, `linux/kernel_stat.h`, `linux/notifier.h`, `linux/cpu.h`, `linux/delay.h`, `linux/uaccess.h`.
- Detected declarations: `function check_stack_overflow`, `function print_stack_overflow`, `function check_stack_overflow`, `function print_stack_overflow`, `function call_on_stack`, `function execute_on_irq_stack`, `function irq_init_percpu_irqstack`, `function do_softirq_own_stack`, `function __handle_irq`.
- 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.