Searched refs:cmd_pool (Results  1 – 12 of 12) sorted by relevance
| /Linux-v5.4/drivers/scsi/ | 
| D | vmw_pvscsi.c | 99 	struct list_head		cmd_pool;  member174 	if (list_empty(&adapter->cmd_pool))  in pvscsi_acquire_context()
 177 	ctx = list_first_entry(&adapter->cmd_pool, struct pvscsi_ctx, list);  in pvscsi_acquire_context()
 189 	list_add(&ctx->list, &adapter->cmd_pool);  in pvscsi_release_context()
 1475 	INIT_LIST_HEAD(&adapter->cmd_pool);  in pvscsi_probe()
 1478 		list_add(&ctx->list, &adapter->cmd_pool);  in pvscsi_probe()
 
 | 
| D | mvumi.c | 320 	if (likely(!list_empty(&mhba->cmd_pool))) {  in mvumi_get_cmd()321 		cmd = list_entry((&mhba->cmd_pool)->next,  in mvumi_get_cmd()
 339 	list_add_tail(&cmd->queue_pointer, &mhba->cmd_pool);  in mvumi_return_cmd()
 350 	while (!list_empty(&mhba->cmd_pool)) {  in mvumi_free_cmds()
 351 		cmd = list_first_entry(&mhba->cmd_pool, struct mvumi_cmd,  in mvumi_free_cmds()
 376 		list_add_tail(&cmd->queue_pointer, &mhba->cmd_pool);  in mvumi_alloc_cmds()
 391 	while (!list_empty(&mhba->cmd_pool)) {  in mvumi_alloc_cmds()
 392 		cmd = list_first_entry(&mhba->cmd_pool, struct mvumi_cmd,  in mvumi_alloc_cmds()
 2481 	INIT_LIST_HEAD(&mhba->cmd_pool);  in mvumi_probe_one()
 
 | 
| D | mvumi.h | 478 	struct list_head cmd_pool;  member
 | 
| D | hpsa.h | 200 	struct CommandList 	*cmd_pool;  member
 | 
| D | hpsa.c | 1821 		struct CommandList *c = h->cmd_pool + i;  in hpsa_find_outstanding_commands_for_dev()5513 		struct CommandList *c = h->cmd_pool + i;  in hpsa_preinitialize_commands()
 6076 	struct CommandList *c = h->cmd_pool + idx;  in cmd_tagged_alloc()
 6161 		c = h->cmd_pool + i;  in cmd_alloc()
 6188 		i = c - h->cmd_pool;  in cmd_free()
 6930 		c = h->cmd_pool + tag_index;  in process_indexed_cmd()
 7984 	if (h->cmd_pool) {  in hpsa_free_cmd_pool()
 7987 				h->cmd_pool,  in hpsa_free_cmd_pool()
 7989 		h->cmd_pool = NULL;  in hpsa_free_cmd_pool()
 8007 	h->cmd_pool = dma_alloc_coherent(&h->pdev->dev,  in hpsa_alloc_cmd_pool()
 [all …]
 
 | 
| /Linux-v5.4/drivers/net/wireless/marvell/mwifiex/ | 
| D | cmdevt.c | 412 	adapter->cmd_pool = cmd_array;  in mwifiex_alloc_cmd_buffer()442 	if (!adapter->cmd_pool) {  in mwifiex_free_cmd_buffer()
 448 	cmd_array = adapter->cmd_pool;  in mwifiex_free_cmd_buffer()
 467 	if (adapter->cmd_pool) {  in mwifiex_free_cmd_buffer()
 470 		kfree(adapter->cmd_pool);  in mwifiex_free_cmd_buffer()
 471 		adapter->cmd_pool = NULL;  in mwifiex_free_cmd_buffer()
 
 | 
| D | main.h | 934 	struct cmd_ctrl_node *cmd_pool;  member
 | 
| /Linux-v5.4/drivers/scsi/ibmvscsi_tgt/ | 
| D | ibmvscsi_tgt.h | 221 	char *cmd_pool;  member
 | 
| D | ibmvscsi_tgt.c | 2884 	vscsi->cmd_pool = kcalloc(num, sizeof(struct ibmvscsis_cmd),  in ibmvscsis_alloc_cmds()2886 	if (!vscsi->cmd_pool)  in ibmvscsis_alloc_cmds()
 2889 	for (i = 0, cmd = (struct ibmvscsis_cmd *)vscsi->cmd_pool; i < num;  in ibmvscsis_alloc_cmds()
 2902 	kfree(vscsi->cmd_pool);  in ibmvscsis_free_cmds()
 2903 	vscsi->cmd_pool = NULL;  in ibmvscsis_free_cmds()
 
 | 
| /Linux-v5.4/include/scsi/ | 
| D | scsi_host.h | 488 	struct scsi_host_cmd_pool *cmd_pool;  member
 | 
| /Linux-v5.4/drivers/scsi/megaraid/ | 
| D | megaraid_sas_base.c | 313 	if (!list_empty(&instance->cmd_pool)) {  in megasas_get_cmd()314 		cmd = list_entry((&instance->cmd_pool)->next,  in megasas_get_cmd()
 358 	list_add(&cmd->list, (&instance->cmd_pool)->next);  in megasas_return_cmd()
 4300 	INIT_LIST_HEAD(&instance->cmd_pool);  in megasas_free_cmds()
 4367 		list_add_tail(&cmd->list, &instance->cmd_pool);  in megasas_alloc_cmds()
 7226 	INIT_LIST_HEAD(&instance->cmd_pool);  in megasas_init_ctrl_params()
 
 | 
| D | megaraid_sas.h | 2337 	struct list_head cmd_pool;  member
 |