Searched refs:command_list (Results 1 - 6 of 6) sorted by relevance
/kernel/linux/build/ |
H A D | kernel_build.py | 161 def exec_cmd(command_list, shell=False, show_output=False, cwd=None): 162 if isinstance(command_list, str): 163 command_list = shlex.split(command_list) 164 elif not isinstance(command_list, list): 165 raise f"command_list to exec_cmd need to be a list or string" 166 command_list = ['nice'] + [str(s) for s in command_list] 169 print(f"cmd: '{command_list}'") 172 command_list i [all...] |
/kernel/linux/linux-5.10/drivers/block/mtip32xx/ |
H A D | mtip32xx.h | 343 void *command_list; member
|
H A D | mtip32xx.c | 2062 dd->port->command_list + sizeof(struct mtip_cmd_hdr) * rq->tag; in mtip_hw_submit_io() 2755 if (port->command_list) { in mtip_dma_free() 2757 port->command_list, port->command_list_dma); in mtip_dma_free() 2781 port->command_list = in mtip_dma_alloc() 2784 if (!port->command_list) { in mtip_dma_alloc() 3454 dd->port->command_list + sizeof(struct mtip_cmd_hdr) * rq->tag; in mtip_issue_reserved_cmd()
|
/kernel/linux/linux-6.6/drivers/block/mtip32xx/ |
H A D | mtip32xx.h | 341 void *command_list; member
|
H A D | mtip32xx.c | 2050 dd->port->command_list + sizeof(struct mtip_cmd_hdr) * rq->tag; in mtip_hw_submit_io() 2599 if (port->command_list) { in mtip_dma_free() 2601 port->command_list, port->command_list_dma); in mtip_dma_free() 2625 port->command_list = in mtip_dma_alloc() 2628 if (!port->command_list) { in mtip_dma_alloc() 3280 dd->port->command_list + sizeof(struct mtip_cmd_hdr) * rq->tag; in mtip_issue_reserved_cmd()
|
/kernel/linux/linux-6.6/fs/smb/server/ |
H A D | smb2pdu.c | 6701 struct list_head *command_list; in smb2_cancel() local 6710 command_list = &conn->async_requests; in smb2_cancel() 6713 list_for_each_entry(iter, command_list, in smb2_cancel() 6732 command_list = &conn->requests; in smb2_cancel() 6735 list_for_each_entry(iter, command_list, request_entry) { in smb2_cancel()
|
Completed in 21 milliseconds