drivers/hv/mshv_vtl.h

Source file repositories/reference/linux-study-clean/drivers/hv/mshv_vtl.h

File Facts

System
Linux kernel
Corpus path
drivers/hv/mshv_vtl.h
Extension
.h
Size
536 bytes
Lines
26
Domain
Driver Families
Bucket
drivers/hv
Inferred role
Driver Families: implementation source
Status
source implementation candidate

Why This File Exists

Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.

Dependency Surface

Detected Declarations

Annotated Snippet

struct mshv_vtl_run {
	u32 cancel;
	u32 vtl_ret_action_size;
	u32 pad[2];
	char exit_message[MSHV_MAX_RUN_MSG_SIZE];
	union {
		struct mshv_vtl_cpu_context cpu_context;

		/*
		 * Reserving room for the cpu context to grow and to maintain compatibility
		 * with user mode.
		 */
		char reserved[1024];
	};
	char vtl_ret_actions[MSHV_MAX_RUN_MSG_SIZE];
};

#endif /* _MSHV_VTL_H */

Annotation

Implementation Notes