arch/x86/include/asm/tlbbatch.h

Source file repositories/reference/linux-study-clean/arch/x86/include/asm/tlbbatch.h

File Facts

System
Linux kernel
Corpus path
arch/x86/include/asm/tlbbatch.h
Extension
.h
Size
467 bytes
Lines
21
Domain
Architecture Layer
Bucket
arch/x86
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 arch_tlbflush_unmap_batch {
	/*
	 * Each bit set is a CPU that potentially has a TLB entry for one of
	 * the PFNs being flushed..
	 */
	struct cpumask cpumask;
	/*
	 * Set if pages were unmapped from any MM, even one that does not
	 * have active CPUs in its cpumask.
	 */
	bool unmapped_pages;
};

#endif /* _ARCH_X86_TLBBATCH_H */

Annotation

Implementation Notes