drivers/gpu/drm/xe/xe_gt_sriov_pf_migration_types.h

Source file repositories/reference/linux-study-clean/drivers/gpu/drm/xe/xe_gt_sriov_pf_migration_types.h

File Facts

System
Linux kernel
Corpus path
drivers/gpu/drm/xe/xe_gt_sriov_pf_migration_types.h
Extension
.h
Size
782 bytes
Lines
29
Domain
Driver Families
Bucket
drivers/gpu
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 xe_gt_sriov_migration_data {
	/** @ring: queue containing VF save / restore migration data */
	struct ptr_ring ring;
	/** @save: structure for currently processed save migration data */
	struct {
		/** @save.data_remaining: bitmap of migration types that need to be saved */
		unsigned long data_remaining;
		/** @save.vram_offset: last saved offset within VRAM, used for chunked VRAM save */
		loff_t vram_offset;
	} save;
};

#endif

Annotation

Implementation Notes