arch/arm64/include/asm/ring_buffer.h

Source file repositories/reference/linux-study-clean/arch/arm64/include/asm/ring_buffer.h

File Facts

System
Linux kernel
Corpus path
arch/arm64/include/asm/ring_buffer.h
Extension
.h
Size
303 bytes
Lines
11
Domain
Architecture Layer
Bucket
arch/arm64
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_ARM64_RING_BUFFER_H
#define _ASM_ARM64_RING_BUFFER_H

#include <asm/cacheflush.h>

/* Flush D-cache on persistent ring buffer */
#define arch_ring_buffer_flush_range(start, end)	dcache_clean_pop(start, end)

#endif /* _ASM_ARM64_RING_BUFFER_H */

Annotation

Implementation Notes