arch/arm/include/asm/bugs.h

Source file repositories/reference/linux-study-clean/arch/arm/include/asm/bugs.h

File Facts

System
Linux kernel
Corpus path
arch/arm/include/asm/bugs.h
Extension
.h
Size
297 bytes
Lines
17
Domain
Architecture Layer
Bucket
arch/arm
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 __ASM_BUGS_H
#define __ASM_BUGS_H

extern void check_writebuffer_bugs(void);

#ifdef CONFIG_MMU
extern void check_other_bugs(void);
#else
#define check_other_bugs() do { } while (0)
#endif

#endif

Annotation

Implementation Notes