Home
last modified time | relevance | path

Searched refs:write_sg (Results 1 – 5 of 5) sorted by relevance

/Linux-v4.19/drivers/target/
Dtarget_core_sbc.c456 struct scatterlist *write_sg = NULL, *sg; in compare_and_write_callback() local
497 write_sg = kmalloc_array(cmd->t_data_nents, sizeof(*write_sg), in compare_and_write_callback()
499 if (!write_sg) { in compare_and_write_callback()
504 sg_init_table(write_sg, cmd->t_data_nents); in compare_and_write_callback()
551 sg_set_page(&write_sg[i], m.page, block_size, in compare_and_write_callback()
555 sg_set_page(&write_sg[i], m.page, block_size, in compare_and_write_callback()
568 cmd->t_data_sg = write_sg; in compare_and_write_callback()
600 kfree(write_sg); in compare_and_write_callback()
/Linux-v4.19/drivers/fpga/
Dfpga-mgr.c186 if (mgr->mops->write_sg) { in fpga_mgr_buf_load_sg()
187 ret = mgr->mops->write_sg(mgr, sgt); in fpga_mgr_buf_load_sg()
571 !mops->write_init || (!mops->write && !mops->write_sg) || in fpga_mgr_create()
572 (mops->write && mops->write_sg)) { in fpga_mgr_create()
Dzynq-fpga.c553 .write_sg = zynq_fpga_ops_write,
/Linux-v4.19/include/linux/fpga/
Dfpga-mgr.h132 int (*write_sg)(struct fpga_manager *mgr, struct sg_table *sgt); member
/Linux-v4.19/Documentation/driver-api/fpga/
Dfpga-mgr.rst82 2. .write or .write_sg (may be called once or multiple times)
95 The .write_sg version behaves the same as .write except the input is a sg_table