arch/xtensa/kernel/xtensa_ksyms.c

Source file repositories/reference/linux-study-clean/arch/xtensa/kernel/xtensa_ksyms.c

File Facts

System
Linux kernel
Corpus path
arch/xtensa/kernel/xtensa_ksyms.c
Extension
.c
Size
660 bytes
Lines
29
Domain
Architecture Layer
Bucket
arch/xtensa
Inferred role
Architecture Layer: exported/initcall integration point
Status
integration 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

#include <linux/module.h>
#include <asm/pgtable.h>

unsigned int __sync_fetch_and_and_4(volatile void *p, unsigned int v)
{
	BUG();
}
EXPORT_SYMBOL(__sync_fetch_and_and_4);

unsigned int __sync_fetch_and_or_4(volatile void *p, unsigned int v)
{
	BUG();
}
EXPORT_SYMBOL(__sync_fetch_and_or_4);

Annotation

Implementation Notes