arch/m68k/include/asm/flat.h

Source file repositories/reference/linux-study-clean/arch/m68k/include/asm/flat.h

File Facts

System
Linux kernel
Corpus path
arch/m68k/include/asm/flat.h
Extension
.h
Size
333 bytes
Lines
18
Domain
Architecture Layer
Bucket
arch/m68k
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 __M68KNOMMU_FLAT_H__
#define __M68KNOMMU_FLAT_H__

#include <asm-generic/flat.h>

#define FLAT_PLAT_INIT(regs) \
	do { \
		if (current->mm) \
			(regs)->d5 = current->mm->start_data; \
	} while (0)

#endif /* __M68KNOMMU_FLAT_H__ */

Annotation

Implementation Notes