Home
last modified time | relevance | path

Searched refs:blk_pak (Results 1 – 3 of 3) sorted by relevance

/DragonOS-0.1.3/docs/community/code_contribution/
Dcoding-style.md27 pack->blk_pak.end_handler = NULL;
28 pack->blk_pak.cmd = AHCI_CMD_READ_DMA_EXT;
31 pack->blk_pak.end_handler = NULL;
32 pack->blk_pak.cmd = AHCI_CMD_WRITE_DMA_EXT;
35 pack->blk_pak.end_handler = NULL;
36 pack->blk_pak.cmd = cmd;
/DragonOS-0.1.3/kernel/src/driver/disk/ahci/
Dahci.c552 wait_queue_init(&pack->blk_pak.wait_queue, current_pcb); in ahci_make_request()
553 pack->blk_pak.device_type = BLK_TYPE_AHCI; in ahci_make_request()
559 pack->blk_pak.end_handler = NULL; in ahci_make_request()
560 pack->blk_pak.cmd = AHCI_CMD_READ_DMA_EXT; in ahci_make_request()
563 pack->blk_pak.end_handler = NULL; in ahci_make_request()
564 pack->blk_pak.cmd = AHCI_CMD_WRITE_DMA_EXT; in ahci_make_request()
567 pack->blk_pak.end_handler = NULL; in ahci_make_request()
568 pack->blk_pak.cmd = cmd; in ahci_make_request()
572 pack->blk_pak.LBA_start = base_addr; in ahci_make_request()
573 pack->blk_pak.count = count; in ahci_make_request()
[all …]
Dahci.h357 struct block_device_request_packet blk_pak; // 块设备请求包 member