arch/s390/include/uapi/asm/clp.h

Source file repositories/reference/linux-study-clean/arch/s390/include/uapi/asm/clp.h

File Facts

System
Linux kernel
Corpus path
arch/s390/include/uapi/asm/clp.h
Extension
.h
Size
549 bytes
Lines
30
Domain
Architecture Layer
Bucket
arch/s390
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

struct clp_req {
	unsigned int c : 1;
	unsigned int r : 1;
	unsigned int lps : 6;
	unsigned int cmd : 8;
	unsigned int : 16;
	unsigned int reserved;
	__u64 data_p;
};

#define CLP_IOCTL_MAGIC 'c'

#define CLP_SYNC _IOWR(CLP_IOCTL_MAGIC, 0xC1, struct clp_req)

#endif

Annotation

Implementation Notes