drivers/vdpa/octeon_ep/octep_vdpa_main.c

Source file repositories/reference/linux-study-clean/drivers/vdpa/octeon_ep/octep_vdpa_main.c

File Facts

System
Linux kernel
Corpus path
drivers/vdpa/octeon_ep/octep_vdpa_main.c
Extension
.c
Size
26324 bytes
Lines
996
Domain
Driver Families
Bucket
drivers/vdpa
Inferred role
Driver Families: operation-table or driver-model contract
Status
pattern 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

static struct pci_driver octep_pci_vdpa = {
	.name     = OCTEP_VDPA_DRIVER_NAME,
	.id_table = octep_pci_vdpa_map,
	.probe    = octep_vdpa_probe,
	.remove   = octep_vdpa_remove,
	.sriov_configure = octep_vdpa_sriov_configure
};

module_pci_driver(octep_pci_vdpa);

MODULE_AUTHOR("Marvell");
MODULE_DESCRIPTION("Marvell Octeon PCIe endpoint vDPA driver");
MODULE_LICENSE("GPL");

Annotation

Implementation Notes