arch/s390/include/asm/cpu.h

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

File Facts

System
Linux kernel
Corpus path
arch/s390/include/asm/cpu.h
Extension
.h
Size
622 bytes
Lines
29
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

#ifndef _ASM_S390_CPU_H
#define _ASM_S390_CPU_H

#ifndef __ASSEMBLER__

#include <linux/types.h>
#include <linux/jump_label.h>

struct cpuid
{
	unsigned int version :	8;
	unsigned int ident   : 24;
	unsigned int machine : 16;
	unsigned int unused  : 16;
} __attribute__ ((packed, aligned(8)));

DECLARE_STATIC_KEY_FALSE(cpu_has_bear);

#endif /* __ASSEMBLER__ */
#endif /* _ASM_S390_CPU_H */

Annotation

Implementation Notes