arch/parisc/include/uapi/asm/cachectl.h

Source file repositories/reference/linux-study-clean/arch/parisc/include/uapi/asm/cachectl.h

File Facts

System
Linux kernel
Corpus path
arch/parisc/include/uapi/asm/cachectl.h
Extension
.h
Size
354 bytes
Lines
13
Domain
Architecture Layer
Bucket
arch/parisc
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_CACHECTL
#define _ASM_CACHECTL

/*
 * Options for cacheflush system call
 */
#define ICACHE	(1<<0)		/* flush instruction cache	  */
#define DCACHE	(1<<1)		/* writeback and flush data cache */
#define BCACHE	(ICACHE|DCACHE) /* flush both caches		  */

#endif	/* _ASM_CACHECTL */

Annotation

Implementation Notes