drivers/block/xen-blkback/blkback.c

Source file repositories/reference/linux-study-clean/drivers/block/xen-blkback/blkback.c

File Facts

System
Linux kernel
Corpus path
drivers/block/xen-blkback/blkback.c
Extension
.c
Size
45168 bytes
Lines
1568
Domain
Driver Families
Bucket
drivers/block
Inferred role
Driver Families: exported/initcall integration point
Status
integration 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

module_init(xen_blkif_init);

static void __exit xen_blkif_fini(void)
{
	xen_blkif_xenbus_fini();
	xen_blkif_interface_fini();
}

module_exit(xen_blkif_fini);

MODULE_DESCRIPTION("Virtual block device back-end driver");
MODULE_LICENSE("Dual BSD/GPL");
MODULE_ALIAS("xen-backend:vbd");

Annotation

Implementation Notes