arch/mips/include/asm/mach-ip27/mmzone.h

Source file repositories/reference/linux-study-clean/arch/mips/include/asm/mach-ip27/mmzone.h

File Facts

System
Linux kernel
Corpus path
arch/mips/include/asm/mach-ip27/mmzone.h
Extension
.h
Size
555 bytes
Lines
28
Domain
Architecture Layer
Bucket
arch/mips
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 hub_data {
	kern_vars_t	kern_vars;
	DECLARE_BITMAP(h_bigwin_used, HUB_NUM_BIG_WINDOW);
	cpumask_t	h_cpus;
};

struct node_data {
	struct pglist_data pglist;
	struct hub_data hub;
};

extern struct node_data *__node_data[];

#define hub_data(n)		(&__node_data[(n)]->hub)

#endif /* _ASM_MACH_MMZONE_H */

Annotation

Implementation Notes