Home
last modified time | relevance | path

Searched refs:sgls (Results 1 – 11 of 11) sorted by relevance

/Linux-v5.15/drivers/nvme/target/
Ddiscovery.c280 id->sgls = cpu_to_le32(1 << 0); /* we always support SGLs */ in nvmet_execute_disc_identify()
282 id->sgls |= cpu_to_le32(1 << 2); in nvmet_execute_disc_identify()
284 id->sgls |= cpu_to_le32(1 << 20); in nvmet_execute_disc_identify()
Dpassthru.c93 id->sgls = cpu_to_le32(1 << 0); /* we always support SGLs */ in nvmet_passthru_override_id_ctrl()
95 id->sgls |= cpu_to_le32(1 << 2); in nvmet_passthru_override_id_ctrl()
97 id->sgls |= cpu_to_le32(1 << 20); in nvmet_passthru_override_id_ctrl()
Dadmin-cmd.c440 id->sgls = cpu_to_le32(1 << 0); /* we always support SGLs */ in nvmet_execute_identify_ctrl()
442 id->sgls |= cpu_to_le32(1 << 2); in nvmet_execute_identify_ctrl()
444 id->sgls |= cpu_to_le32(1 << 20); in nvmet_execute_identify_ctrl()
/Linux-v5.15/drivers/misc/genwqe/
Dcard_dev.c846 if (req->sgls[i].sgl != NULL) in ddcb_cmd_cleanup()
847 genwqe_free_sync_sgl(cd, &req->sgls[i]); in ddcb_cmd_cleanup()
958 rc = genwqe_alloc_sync_sgl(cd, &req->sgls[i], in ddcb_cmd_fixups()
964 genwqe_setup_sgl(cd, &req->sgls[i], in ddcb_cmd_fixups()
968 cpu_to_be64(req->sgls[i].sgl_dma_addr); in ddcb_cmd_fixups()
Dcard_base.h387 struct genwqe_sgl sgls[DDCB_FIXUPS]; member
/Linux-v5.15/drivers/nvme/host/
Dnvme.h290 u32 sgls; member
891 return ctrl->sgls & ((1 << 0) | (1 << 1)); in nvme_ctrl_sgl_supported()
Drdma.c1102 if (!(ctrl->ctrl.sgls & (1 << 2))) { in nvme_rdma_setup_ctrl()
1121 if (ctrl->ctrl.sgls & (1 << 20)) in nvme_rdma_setup_ctrl()
Dcore.c2924 ctrl->sgls = le32_to_cpu(id->sgls); in nvme_init_identify()
/Linux-v5.15/drivers/scsi/elx/efct/
Defct_hw.c610 struct efc_dma **sgls = NULL; in efct_hw_init_prereg_io() local
614 sgls = kmalloc_array(sgls_per_request, sizeof(*sgls), GFP_KERNEL); in efct_hw_init_prereg_io()
615 if (!sgls) in efct_hw_init_prereg_io()
623 kfree(sgls); in efct_hw_init_prereg_io()
641 sgls[n] = hw->io[idx + n]->sgl; in efct_hw_init_prereg_io()
645 hw->io[idx]->indicator, n, sgls, NULL, &req)) { in efct_hw_init_prereg_io()
667 kfree(sgls); in efct_hw_init_prereg_io()
/Linux-v5.15/drivers/infiniband/core/
Duverbs_cmd.c2001 const struct ib_sge __user *sgls; in ib_uverbs_post_send() local
2011 sgls = uverbs_request_next_ptr( in ib_uverbs_post_send()
2013 if (IS_ERR(sgls)) in ib_uverbs_post_send()
2014 return PTR_ERR(sgls); in ib_uverbs_post_send()
2141 if (copy_from_user(next->sg_list, sgls + sg_ind, in ib_uverbs_post_send()
2192 const struct ib_sge __user *sgls; in ib_uverbs_unmarshall_recv() local
2201 sgls = uverbs_request_next_ptr( in ib_uverbs_unmarshall_recv()
2203 if (IS_ERR(sgls)) in ib_uverbs_unmarshall_recv()
2204 return ERR_CAST(sgls); in ib_uverbs_unmarshall_recv()
2255 if (copy_from_user(next->sg_list, sgls + sg_ind, in ib_uverbs_unmarshall_recv()
/Linux-v5.15/include/linux/
Dnvme.h299 __le32 sgls; member