Home
last modified time | relevance | path

Searched refs:sdb (Results 1 – 52 of 52) sorted by relevance

/linux-4.4.14/Documentation/target/
Dtcm_mod_builder.txt30 target:/mnt/sdb/lio-core-2.6.git/Documentation/target# python tcm_mod_builder.py -p iSCSI -m tcm_na…
31 tcm_dir: /mnt/sdb/lio-core-2.6.git/Documentation/target/../../
34 /mnt/sdb/lio-core-2.6.git/Documentation/target/../../drivers/target/tcm_nab5000
37 /mnt/sdb/lio-core-2.6.git/Documentation/target/../../drivers/target/tcm_nab5000
39 /mnt/sdb/lio-core-2.6.git/Documentation/target/../../drivers/target/tcm_nab5000/tcm_nab5000_base.h
41 /mnt/sdb/lio-core-2.6.git/Documentation/target/../../include/target/target_core_fabric_ops.h
43 /mnt/sdb/lio-core-2.6.git/Documentation/target/../../drivers/target/tcm_nab5000/tcm_nab5000_fabric.c
45 /mnt/sdb/lio-core-2.6.git/Documentation/target/../../drivers/target/tcm_nab5000/tcm_nab5000_fabric.h
47 /mnt/sdb/lio-core-2.6.git/Documentation/target/../../drivers/target/tcm_nab5000/tcm_nab5000_configf…
49 /mnt/sdb/lio-core-2.6.git/Documentation/target/../../drivers/target/tcm_nab5000/Kbuild
[all …]
/linux-4.4.14/include/scsi/
Dscsi_cmnd.h98 struct scsi_data_buffer sdb; member
173 return cmd->sdb.table.nents; in scsi_sg_count()
178 return cmd->sdb.table.sgl; in scsi_sglist()
183 return cmd->sdb.length; in scsi_bufflen()
188 cmd->sdb.resid = resid; in scsi_set_resid()
193 return cmd->sdb.resid; in scsi_get_resid()
208 cmd->request->next_rq->special : &cmd->sdb; in scsi_in()
213 return &cmd->sdb; in scsi_out()
Dscsi_eh.h38 struct scsi_data_buffer sdb; member
/linux-4.4.14/Documentation/device-mapper/
Dlog-writes.txt102 TABLE="0 $(blockdev --getsz /dev/sdb) log-writes /dev/sdb /dev/sdc"
114 replay-log --log /dev/sdc --replay /dev/sdb --end-mark fsync
115 mount /dev/sdb /mnt/btrfs-test
122 TABLE="0 $(blockdev --getsz /dev/sdb) log-writes /dev/sdb /dev/sdc"
133 replay-log --log /dev/sdc --replay /dev/sdb --end-mark mkfs
134 btrfsck /dev/sdb
135 replay-log --log /dev/sdc --replay /dev/sdb --start-mark mkfs \
136 --fsck "btrfsck /dev/sdb" --check fua
Ddm-service-time.txt68 In case that 2 paths (sda and sdb) are used with repeat_count == 128
69 and sda has an average throughput 1GB/s and sdb has 4GB/s,
70 'relative_throughput' value may be '1' for sda and '4' for sdb.
82 Or '2' for sda and '8' for sdb would be also true.
Ddm-queue-length.txt30 In case that 2 paths (sda and sdb) are used with repeat_count == 128.
Dcache-policies.txt155 dmsetup create blah --table "0 268435456 cache /dev/sdb /dev/sdc \
/linux-4.4.14/drivers/fmc/
Dfmc-dump.c68 if (!fmc->sdb) in fmc_dump_sdb()
94 len = fmc->sdb->len * sizeof(union sdb_record); in fmc_dump_sdb()
95 line = (void *)fmc->sdb->record; in fmc_dump_sdb()
Dfmc-sdb.c94 if (fmc->sdb) in fmc_scan_sdb_tree()
99 fmc->sdb = ret; in fmc_scan_sdb_tree()
123 __fmc_sdb_free(fmc->sdb); in fmc_free_sdb_tree()
124 fmc->sdb = NULL; in fmc_free_sdb_tree()
247 if (!fmc->sdb) in fmc_show_sdb_tree()
249 __fmc_show_sdb_tree(fmc, fmc->sdb); in fmc_show_sdb_tree()
DMakefile6 fmc-y += fmc-sdb.o
/linux-4.4.14/drivers/scsi/
Dscsi_lib.c585 static void scsi_free_sgtable(struct scsi_data_buffer *sdb, bool mq) in scsi_free_sgtable() argument
587 if (mq && sdb->table.orig_nents <= SCSI_MAX_SG_SEGMENTS) in scsi_free_sgtable()
589 __sg_free_table(&sdb->table, SCSI_MAX_SG_SEGMENTS, mq, scsi_sg_free); in scsi_free_sgtable()
592 static int scsi_alloc_sgtable(struct scsi_data_buffer *sdb, int nents, bool mq) in scsi_alloc_sgtable() argument
601 sdb->table.nents = sdb->table.orig_nents = nents; in scsi_alloc_sgtable()
602 sg_init_table(sdb->table.sgl, nents); in scsi_alloc_sgtable()
605 first_chunk = sdb->table.sgl; in scsi_alloc_sgtable()
608 ret = __sg_alloc_table(&sdb->table, nents, SCSI_MAX_SG_SEGMENTS, in scsi_alloc_sgtable()
611 scsi_free_sgtable(sdb, mq); in scsi_alloc_sgtable()
627 if (cmd->sdb.table.nents) in scsi_mq_free_sgtables()
[all …]
Dscsi_error.c930 ses->sdb = scmd->sdb; in scsi_eh_prep_cmnd()
940 memset(&scmd->sdb, 0, sizeof(scmd->sdb)); in scsi_eh_prep_cmnd()
945 scmd->sdb.length = min_t(unsigned, SCSI_SENSE_BUFFERSIZE, in scsi_eh_prep_cmnd()
948 scmd->sdb.length); in scsi_eh_prep_cmnd()
949 scmd->sdb.table.sgl = &ses->sense_sgl; in scsi_eh_prep_cmnd()
951 scmd->sdb.table.nents = scmd->sdb.table.orig_nents = 1; in scsi_eh_prep_cmnd()
953 scmd->cmnd[4] = scmd->sdb.length; in scsi_eh_prep_cmnd()
993 scmd->sdb = ses->sdb; in scsi_eh_restore_cmnd()
2356 memset(&scmd->sdb, 0, sizeof(scmd->sdb)); in scsi_ioctl_reset()
Dscsi_debug.c909 struct scsi_data_buffer *sdb = scsi_in(scp); in fill_from_dev_buffer() local
911 if (!sdb->length) in fill_from_dev_buffer()
916 act_len = sg_copy_from_buffer(sdb->table.sgl, sdb->table.nents, in fill_from_dev_buffer()
918 sdb->resid = scsi_bufflen(scp) - act_len; in fill_from_dev_buffer()
2366 struct scsi_data_buffer *sdb; in do_device_access() local
2370 sdb = scsi_out(scmd); in do_device_access()
2373 sdb = scsi_in(scmd); in do_device_access()
2377 if (!sdb->length) in do_device_access()
2386 ret = sg_copy_buffer(sdb->table.sgl, sdb->table.nents, in do_device_access()
2393 ret += sg_copy_buffer(sdb->table.sgl, sdb->table.nents, in do_device_access()
[all …]
Discsi_tcp.c515 struct scsi_data_buffer *sdb = scsi_out(task->sc); in iscsi_sw_tcp_pdu_init() local
517 err = iscsi_sw_tcp_send_data_prep(conn, sdb->table.sgl, in iscsi_sw_tcp_pdu_init()
518 sdb->table.nents, offset, in iscsi_sw_tcp_pdu_init()
Dlibiscsi_tcp.c690 struct scsi_data_buffer *sdb = scsi_in(task->sc); in iscsi_tcp_hdr_dissect() local
710 sdb->table.sgl, in iscsi_tcp_hdr_dissect()
711 sdb->table.nents, in iscsi_tcp_hdr_dissect()
Dsr.c464 SCpnt->sdb.length = size; in sr_init_command()
491 SCpnt->sdb.length = this_count * s_size; in sr_init_command()
Dsd.c887 memset(&cmd->sdb, 0, sizeof(cmd->sdb)); in sd_setup_flush_cmnd()
1116 SCpnt->sdb.length = this_count * sdp->sector_size; in sd_setup_read_write_cmnd()
/linux-4.4.14/arch/s390/oprofile/
Dhwsampler.c246 unsigned long sdb; in allocate_sdbt() local
282 sdb = get_zeroed_page(GFP_KERNEL); in allocate_sdbt()
287 if (oom_killer_was_active || !sdb) { in allocate_sdbt()
288 if (sdb) in allocate_sdbt()
289 free_page(sdb); in allocate_sdbt()
293 *sdbt = sdb; in allocate_sdbt()
884 int hwsampler_allocate(unsigned long sdbt, unsigned long sdb) in hwsampler_allocate() argument
896 if (sdb > MAX_NUM_SDB || sdb < MIN_NUM_SDB) in hwsampler_allocate()
900 num_sdb = sdb; in hwsampler_allocate()
Dhwsampler.h53 int hwsampler_allocate(unsigned long sdbt, unsigned long sdb);
/linux-4.4.14/drivers/usb/storage/
Duas.c348 struct scsi_data_buffer *sdb = NULL; in uas_data_cmplt() local
355 sdb = scsi_in(cmnd); in uas_data_cmplt()
359 sdb = scsi_out(cmnd); in uas_data_cmplt()
363 if (sdb == NULL) { in uas_data_cmplt()
381 sdb->resid = sdb->length; in uas_data_cmplt()
383 sdb->resid = sdb->length - urb->actual_length; in uas_data_cmplt()
406 struct scsi_data_buffer *sdb = (dir == DMA_FROM_DEVICE) in uas_alloc_data_urb() local
413 usb_fill_bulk_urb(urb, udev, pipe, NULL, sdb->length, in uas_alloc_data_urb()
417 urb->num_sgs = udev->bus->sg_tablesize ? sdb->table.nents : 0; in uas_alloc_data_urb()
418 urb->sg = sdb->table.sgl; in uas_alloc_data_urb()
Disd200.c469 srb->sdb.table.sgl = buff ? &info->sg : NULL; in isd200_set_srb()
470 srb->sdb.length = bufflen; in isd200_set_srb()
471 srb->sdb.table.nents = buff ? 1 : 0; in isd200_set_srb()
476 srb->sdb.length = bufflen; in isd200_srb_set_bufflen()
/linux-4.4.14/arch/arm/boot/dts/
Dtegra20-trimslice.dts155 sdb {
156 nvidia,pins = "sdb", "sdc", "sdd";
252 "lvs", "sdb";
Dimx6sx-sdb.dtsi17 compatible = "fsl,imx6sx-sdb", "fsl,imx6sx";
135 compatible = "fsl,imx6sx-sdb-wm8962", "fsl,imx-audio-wm8962";
313 imx6x-sdb {
Dtegra20-tamonten.dtsi147 sdb {
148 nvidia,pins = "sdb", "sdc", "sdd";
216 "lvp0", "owc", "sdb";
Dimx6sx-sdb.dts9 #include "imx6sx-sdb.dtsi"
Dimx6sx-sdb-reva.dts9 #include "imx6sx-sdb.dtsi"
Dtegra20-ventana.dts167 sdb {
168 nvidia,pins = "sdb", "sdc", "sdd", "slxc";
259 "lvp1", "lvs", "pmc", "sdb";
Dimx7d-sdb.dts50 compatible = "fsl,imx7d-sdb", "fsl,imx7d";
311 imx7d-sdb {
Dtegra20-harmony.dts165 sdb {
166 nvidia,pins = "sdb", "sdc", "sdd";
234 "lvp0", "owc", "sdb";
Dtegra20-paz00.dts98 nvidia,pins = "gpu", "sdb", "sdd";
247 "lvp0", "lvp1", "sdb";
Dtegra20-whistler.dts155 sdb {
156 nvidia,pins = "sdb", "sdc", "sdd", "slxa",
Dtegra20-seaboard.dts168 sdb {
169 nvidia,pins = "sdb", "sdc", "sdd";
263 "lvs", "pmc", "sdb";
DMakefile348 imx6sx-sdb-reva.dtb \
349 imx6sx-sdb.dtb
353 imx7d-sdb.dtb
Dtegra20-colibri-512.dtsi140 nvidia,pins = "sdb", "sdc", "sdd";
/linux-4.4.14/arch/s390/kernel/
Dperf_cpum_sf.c158 unsigned long sdb, *trailer; in alloc_sample_data_block() local
161 sdb = get_zeroed_page(gfp_flags); in alloc_sample_data_block()
162 if (!sdb) in alloc_sample_data_block()
164 trailer = trailer_entry_ptr(sdb); in alloc_sample_data_block()
168 *sdbt = sdb; in alloc_sample_data_block()
/linux-4.4.14/Documentation/fmc/
Didentifiers.txt116 the sdb entry point, and you must force the FRU data file to be placed
153 spusa$ sdb-read -l -e 0x100 /lib/firmware/fdelay-eeprom.bin
154 /home/rubini/wip/sdbfs/userspace/sdb-read: listing format is to be defined
Dparameters.txt48 FMC: poor dump of sdb first level:
DFMC-and-SDB.txt80 <linux/fmc-sdb.h>. The linux/ prefix in the name is there because we
Dcarrier.txt51 struct sdb_array *sdb;
109 * sdb: FPGA contents, scanned according to driver's directions.
/linux-4.4.14/Documentation/
Dbcache.txt41 make-bcache -B /dev/sdb
47 make-bcache -B /dev/sda /dev/sdb -C /dev/sdc
52 echo /dev/sdb > /sys/fs/bcache/register
97 echo 1 > /sys/block/sdb/bcache/running
99 (You need to use /sys/block/sdb (or whatever your backing device is called), not
101 partition, the bcache directory would be at /sys/block/sdb/sdb2/bcache)
Ddevices.txt283 16 = /dev/sdb Second SCSI disk whole disk
/linux-4.4.14/include/linux/
Dfmc.h179 struct sdb_array *sdb; member
/linux-4.4.14/Documentation/scsi/
Ddtc3x80.txt39 of=/dev/null if=/dev/sdb". It reads ok for a while, then hangs.
DChangeLog.1992-19971618 sda, sdb, etc instead of sd0, sd1, etc.
/linux-4.4.14/drivers/target/loopback/
Dtcm_loop.c144 struct scsi_data_buffer *sdb = scsi_in(sc); in tcm_loop_submission_work() local
146 sgl_bidi = sdb->table.sgl; in tcm_loop_submission_work()
147 sgl_bidi_count = sdb->table.nents; in tcm_loop_submission_work()
/linux-4.4.14/Documentation/powerpc/
Dcxlflash.txt81 scsi block devices (/dev/sdb, /dev/sdc etc.) for each unique LUN
93 block device (/dev/sdb) may be carved up into any number of distinct
99 block device (/dev/sdb) may be opened directly by the block library
136 with the scsi disk device (/dev/sdb) that was created during LUN
/linux-4.4.14/drivers/scsi/cxgbi/
Dlibcxgbi.c2175 struct scsi_data_buffer *sdb = scsi_out(task->sc); in cxgbi_conn_init_pdu() local
2182 sdb->table.sgl, sdb->table.nents, in cxgbi_conn_init_pdu()
2186 sdb->table.nents, tdata->offset, sdb->length); in cxgbi_conn_init_pdu()
2193 sdb->table.nents, tdata->offset, tdata->count); in cxgbi_conn_init_pdu()
/linux-4.4.14/Documentation/cgroups/
Dblkio-controller.txt51 dd if=/mnt/sdb/zerofile1 of=/dev/null &
55 dd if=/mnt/sdb/zerofile2 of=/dev/null &
159 Configure weight=300 on /dev/sdb (8:16) in this cgroup
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/
Dnvidia,tegra20-pinmux.txt81 owc, pmc, pta, rm, sdb, sdc, sdd, sdio1, slxa, slxc, slxd, slxk, spdi,
/linux-4.4.14/drivers/pinctrl/
Dpinctrl-tegra20.c2133 MUX_PG(sdb, UARTA, PWM, SDIO3, SPI2, 0x20, 15, 0x8c, 10, -1, -1),
/linux-4.4.14/Documentation/m68k/
Dkernel-options.txt78 /dev/sdb: -> 0x0810 (second SCSI disk)
/linux-4.4.14/drivers/scsi/ufs/
Dufshcd.c1152 cpu_to_be32(lrbp->cmd->sdb.length); in ufshcd_prepare_utp_scsi_cmd_upiu()