arch/powerpc/include/asm/book3s/32/kup.h

Source file repositories/reference/linux-study-clean/arch/powerpc/include/asm/book3s/32/kup.h

File Facts

System
Linux kernel
Corpus path
arch/powerpc/include/asm/book3s/32/kup.h
Extension
.h
Size
3725 bytes
Lines
175
Domain
Architecture Layer
Bucket
arch/powerpc
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

if (!(kuap & 0x0fffffff) && address > kuap - 4 && fix_alignment(regs)) {
			regs_add_return_ip(regs, 4);
			emulate_single_step(regs);
		} else {
			regs->kuap = address;
		}
	}

	return false;
}

#endif /* CONFIG_PPC_KUAP */

#endif /* __ASSEMBLER__ */

#endif /* _ASM_POWERPC_BOOK3S_32_KUP_H */

Annotation

Implementation Notes