xref: /spdk/doc/bdev.md (revision 32999ab917f67af61872f868585fd3d78ad6fb8a)
1# Block Device User Guide {#bdev}
2
3# Target Audience {#bdev_ug_targetaudience}
4
5This user guide is intended for software developers who have knowledge of block storage, storage drivers, issuing JSON-RPC commands and storage services such as RAID, compression, crypto, and others.
6
7# Introduction {#bdev_ug_introduction}
8
9The SPDK block device layer, often simply called *bdev*, is a C library
10intended to be equivalent to the operating system block storage layer that
11often sits immediately above the device drivers in a traditional kernel
12storage stack. Specifically, this library provides the following
13functionality:
14
15* A pluggable module API for implementing block devices that interface with different types of block storage devices.
16* Driver modules for NVMe, malloc (ramdisk), Linux AIO, virtio-scsi, Ceph RBD, Pmem and Vhost-SCSI Initiator and more.
17* An application API for enumerating and claiming SPDK block devices and then performing operations (read, write, unmap, etc.) on those devices.
18* Facilities to stack block devices to create complex I/O pipelines, including logical volume management (lvol) and partition support (GPT).
19* Configuration of block devices via JSON-RPC.
20* Request queueing, timeout, and reset handling.
21* Multiple, lockless queues for sending I/O to block devices.
22
23Bdev module creates abstraction layer that provides common API for all devices.
24User can use available bdev modules or create own module with any type of
25device underneath (please refer to @ref bdev_module for details). SPDK
26provides also vbdev modules which creates block devices on existing bdev. For
27example @ref bdev_ug_logical_volumes or @ref bdev_ug_gpt
28
29# Prerequisites {#bdev_ug_prerequisites}
30
31This guide assumes that you can already build the standard SPDK distribution
32on your platform. The block device layer is a C library with a single public
33header file named bdev.h. All SPDK configuration described in following
34chapters is done by using JSON-RPC commands. SPDK provides a python-based
35command line tool for sending RPC commands located at `scripts/rpc.py`. User
36can list available commands by running this script with `-h` or `--help` flag.
37Additionally user can retrieve currently supported set of RPC commands
38directly from SPDK application by running `scripts/rpc.py rpc_get_methods`.
39Detailed help for each command can be displayed by adding `-h` flag as a
40command parameter.
41
42# Configuring Block Device Modules {#bdev_ug_general_rpcs}
43
44Block devices can be configured using JSON RPCs. A complete list of available RPC commands
45with detailed information can be found on the @ref jsonrpc_components_bdev page.
46
47# Common Block Device Configuration Examples
48
49# Ceph RBD {#bdev_config_rbd}
50
51The SPDK RBD bdev driver provides SPDK block layer access to Ceph RADOS block
52devices (RBD). Ceph RBD devices are accessed via librbd and librados libraries
53to access the RADOS block device exported by Ceph. To create Ceph bdev RPC
54command `bdev_rbd_create` should be used.
55
56Example command
57
58`rpc.py bdev_rbd_create rbd foo 512`
59
60This command will create a bdev that represents the 'foo' image from a pool called 'rbd'.
61
62To remove a block device representation use the bdev_rbd_delete command.
63
64`rpc.py bdev_rbd_delete Rbd0`
65
66To resize a bdev use the bdev_rbd_resize command.
67
68`rpc.py bdev_rbd_resize Rbd0 4096`
69
70This command will resize the Rbd0 bdev to 4096 MiB.
71
72# Compression Virtual Bdev Module {#bdev_config_compress}
73
74The compression bdev module can be configured to provide compression/decompression
75services for an underlying thinly provisioned logical volume. Although the underlying
76module can be anything (i.e. NVME bdev) the overall compression benefits will not be realized
77unless the data stored on disk is placed appropriately. The compression vbdev module
78relies on an internal SPDK library called `reduce` to accomplish this, see @ref reduce
79for detailed information.
80
81The vbdev module relies on the DPDK CompressDev Framework to provide all compression
82functionality. The framework provides support for many different software only
83compression modules as well as hardware assisted support for Intel QAT. At this
84time the vbdev module supports the DPDK drivers for ISAL and QAT.
85
86Persistent memory is used to store metadata associated with the layout of the data on the
87backing device. SPDK relies on [PMDK](http://pmem.io/pmdk/) to interface persistent memory so any hardware
88supported by PMDK should work. If the directory for PMEM supplied upon vbdev creation does
89not point to persistent memory (i.e. a regular filesystem) performance will be severely
90impacted.  The vbdev module and reduce libraries were designed to use persistent memory for
91any production use.
92
93Example command
94
95`rpc.py bdev_compress_create -p /pmem_files -b myLvol`
96
97In this example, a compression vbdev is created using persistent memory that is mapped to
98the directory `pmem_files` on top of the existing thinly provisioned logical volume `myLvol`.
99The resulting compression bdev will be named `COMP_LVS/myLvol` where LVS is the name of the
100logical volume store that `myLvol` resides on.
101
102The logical volume is referred to as the backing device and once the compression vbdev is
103created it cannot be separated from the persistent memory file that will be created in
104the specified directory.  If the persistent memory file is not available, the compression
105vbdev will also not be available.
106
107By default the vbdev module will choose the QAT driver if the hardware and drivers are
108available and loaded.  If not, it will revert to the software-only ISAL driver. By using
109the following command, the driver may be specified however this is not persistent so it
110must be done either upon creation or before the underlying logical volume is loaded to
111be honored. In the example below, `0` is telling the vbdev module to use QAT if available
112otherwise use ISAL, this is the default and if sufficient the command is not required. Passing
113a value of 1 tells the driver to use QAT and if not available then the creation or loading
114the vbdev should fail to create or load.  A value of '2' as shown below tells the module
115to use ISAL and if for some reason it is not available, the vbdev should fail to create or load.
116
117`rpc.py compress_set_pmd -p 2`
118
119To remove a compression vbdev, use the following command which will also delete the PMEM
120file.  If the logical volume is deleted the PMEM file will not be removed and the
121compression vbdev will not be available.
122
123`rpc.py bdev_compress_delete COMP_LVS/myLvol`
124
125To list compression volumes that are only available for deletion because their PMEM file
126was missing use the following. The name parameter is optional and if not included will list
127all volumes, if used it will return the name or an error that the device does not exist.
128
129`rpc.py bdev_compress_get_orphans --name COMP_Nvme0n1`
130
131# Crypto Virtual Bdev Module {#bdev_config_crypto}
132
133The crypto virtual bdev module can be configured to provide at rest data encryption
134for any underlying bdev. The module relies on the DPDK CryptoDev Framework to provide
135all cryptographic functionality. The framework provides support for many different software
136only cryptographic modules as well hardware assisted support for the Intel QAT board. The
137framework also provides support for cipher, hash, authentication and AEAD functions. At this
138time the SPDK virtual bdev module supports cipher only as follows:
139
140- AESN-NI Multi Buffer Crypto Poll Mode Driver: RTE_CRYPTO_CIPHER_AES128_CBC
141- Intel(R) QuickAssist (QAT) Crypto Poll Mode Driver: RTE_CRYPTO_CIPHER_AES128_CBC
142  (Note: QAT is functional however is marked as experimental until the hardware has
143  been fully integrated with the SPDK CI system.)
144
145In order to support using the bdev block offset (LBA) as the initialization vector (IV),
146the crypto module break up all I/O into crypto operations of a size equal to the block
147size of the underlying bdev.  For example, a 4K I/O to a bdev with a 512B block size,
148would result in 8 cryptographic operations.
149
150For reads, the buffer provided to the crypto module will be used as the destination buffer
151for unencrypted data.  For writes, however, a temporary scratch buffer is used as the
152destination buffer for encryption which is then passed on to the underlying bdev as the
153write buffer.  This is done to avoid encrypting the data in the original source buffer which
154may cause problems in some use cases.
155
156Example command
157
158`rpc.py bdev_crypto_create NVMe1n1 CryNvmeA crypto_aesni_mb 0123456789123456`
159
160This command will create a crypto vbdev called 'CryNvmeA' on top of the NVMe bdev
161'NVMe1n1' and will use the DPDK software driver 'crypto_aesni_mb' and the key
162'0123456789123456'.
163
164To remove the vbdev use the bdev_crypto_delete command.
165
166`rpc.py bdev_crypto_delete CryNvmeA`
167
168# Delay Bdev Module {#bdev_config_delay}
169
170The delay vbdev module is intended to apply a predetermined additional latency on top of a lower
171level bdev. This enables the simulation of the latency characteristics of a device during the functional
172or scalability testing of an SPDK application. For example, to simulate the effect of drive latency when
173processing I/Os, one could configure a NULL bdev with a delay bdev on top of it.
174
175The delay bdev module is not intended to provide a high fidelity replication of a specific NVMe drive's latency,
176instead it's main purpose is to provide a "big picture" understanding of how a generic latency affects a given
177application.
178
179A delay bdev is created using the `bdev_delay_create` RPC. This rpc takes 6 arguments, one for the name
180of the delay bdev and one for the name of the base bdev. The remaining four arguments represent the following
181latency values: average read latency, average write latency, p99 read latency, and p99 write latency.
182Within the context of the delay bdev p99 latency means that one percent of the I/O will be delayed by at
183least by the value of the p99 latency before being completed to the upper level protocol. All of the latency values
184are measured in microseconds.
185
186Example command:
187
188`rpc.py bdev_delay_create -b Null0 -d delay0 -r 10 --nine-nine-read-latency 50 -w 30 --nine-nine-write-latency 90`
189
190This command will create a delay bdev with average read and write latencies of 10 and 30 microseconds and p99 read
191and write latencies of 50 and 90 microseconds respectively.
192
193A delay bdev can be deleted using the `bdev_delay_delete` RPC
194
195Example command:
196
197`rpc.py bdev_delay_delete delay0`
198
199# GPT (GUID Partition Table) {#bdev_config_gpt}
200
201The GPT virtual bdev driver is enabled by default and does not require any configuration.
202It will automatically detect @ref bdev_ug_gpt on any attached bdev and will create
203possibly multiple virtual bdevs.
204
205## SPDK GPT partition table {#bdev_ug_gpt}
206
207The SPDK partition type GUID is `7c5222bd-8f5d-4087-9c00-bf9843c7b58c`. Existing SPDK bdevs
208can be exposed as Linux block devices via NBD and then can be partitioned with
209standard partitioning tools. After partitioning, the bdevs will need to be deleted and
210attached again for the GPT bdev module to see any changes. NBD kernel module must be
211loaded first. To create NBD bdev user should use `nbd_start_disk` RPC command.
212
213Example command
214
215`rpc.py nbd_start_disk Malloc0 /dev/nbd0`
216
217This will expose an SPDK bdev `Malloc0` under the `/dev/nbd0` block device.
218
219To remove NBD device user should use `nbd_stop_disk` RPC command.
220
221Example command
222
223`rpc.py nbd_stop_disk /dev/nbd0`
224
225To display full or specified nbd device list user should use `nbd_get_disks` RPC command.
226
227Example command
228
229`rpc.py nbd_stop_disk -n /dev/nbd0`
230
231## Creating a GPT partition table using NBD {#bdev_ug_gpt_create_part}
232
233~~~
234# Expose bdev Nvme0n1 as kernel block device /dev/nbd0 by JSON-RPC
235rpc.py nbd_start_disk Nvme0n1 /dev/nbd0
236
237# Create GPT partition table.
238parted -s /dev/nbd0 mklabel gpt
239
240# Add a partition consuming 50% of the available space.
241parted -s /dev/nbd0 mkpart MyPartition '0%' '50%'
242
243# Change the partition type to the SPDK GUID.
244# sgdisk is part of the gdisk package.
245sgdisk -t 1:7c5222bd-8f5d-4087-9c00-bf9843c7b58c /dev/nbd0
246
247# Stop the NBD device (stop exporting /dev/nbd0).
248rpc.py nbd_stop_disk /dev/nbd0
249
250# Now Nvme0n1 is configured with a GPT partition table, and
251# the first partition will be automatically exposed as
252# Nvme0n1p1 in SPDK applications.
253~~~
254
255# iSCSI bdev {#bdev_config_iscsi}
256
257The SPDK iSCSI bdev driver depends on libiscsi and hence is not enabled by default.
258In order to use it, build SPDK with an extra `--with-iscsi-initiator` configure option.
259
260The following command creates an `iSCSI0` bdev from a single LUN exposed at given iSCSI URL
261with `iqn.2016-06.io.spdk:init` as the reported initiator IQN.
262
263`rpc.py bdev_iscsi_create -b iSCSI0 -i iqn.2016-06.io.spdk:init --url iscsi://127.0.0.1/iqn.2016-06.io.spdk:disk1/0`
264
265The URL is in the following format:
266`iscsi://[<username>[%<password>]@]<host>[:<port>]/<target-iqn>/<lun>`
267
268# Linux AIO bdev {#bdev_config_aio}
269
270The SPDK AIO bdev driver provides SPDK block layer access to Linux kernel block
271devices or a file on a Linux filesystem via Linux AIO. Note that O_DIRECT is
272used and thus bypasses the Linux page cache. This mode is probably as close to
273a typical kernel based target as a user space target can get without using a
274user-space driver. To create AIO bdev RPC command `bdev_aio_create` should be
275used.
276
277Example commands
278
279`rpc.py bdev_aio_create /dev/sda aio0`
280
281This command will create `aio0` device from /dev/sda.
282
283`rpc.py bdev_aio_create /tmp/file file 4096`
284
285This command will create `file` device with block size 4096 from /tmp/file.
286
287To delete an aio bdev use the bdev_aio_delete command.
288
289`rpc.py bdev_aio_delete aio0`
290
291# OCF Virtual bdev {#bdev_config_cas}
292
293OCF virtual bdev module is based on [Open CAS Framework](https://github.com/Open-CAS/ocf) - a
294high performance block storage caching meta-library.
295To enable the module, configure SPDK using `--with-ocf` flag.
296OCF bdev can be used to enable caching for any underlying bdev.
297
298Below is an example command for creating OCF bdev:
299
300`rpc.py bdev_ocf_create Cache1 wt Malloc0 Nvme0n1`
301
302This command will create new OCF bdev `Cache1` having bdev `Malloc0` as caching-device
303and `Nvme0n1` as core-device and initial cache mode `Write-Through`.
304`Malloc0` will be used as cache for `Nvme0n1`, so  data written to `Cache1` will be present
305on `Nvme0n1` eventually.
306By default, OCF will be configured with cache line size equal 4KiB
307and non-volatile metadata will be disabled.
308
309To remove `Cache1`:
310
311`rpc.py bdev_ocf_delete Cache1`
312
313During removal OCF-cache will be stopped and all cached data will be written to the core device.
314
315Note that OCF has a per-device RAM requirement. More details can be found in the
316[OCF documentation](https://open-cas.github.io/guide_system_requirements.html).
317
318# Malloc bdev {#bdev_config_malloc}
319
320Malloc bdevs are ramdisks. Because of its nature they are volatile. They are created from hugepage memory given to SPDK
321application.
322
323Example command for creating malloc bdev:
324
325`rpc.py bdev_malloc_create -b Malloc0 64 512`
326
327Example command for removing malloc bdev:
328
329`rpc.py bdev_malloc_delete Malloc0`
330
331# Null {#bdev_config_null}
332
333The SPDK null bdev driver is a dummy block I/O target that discards all writes and returns undefined
334data for reads.  It is useful for benchmarking the rest of the bdev I/O stack with minimal block
335device overhead and for testing configurations that can't easily be created with the Malloc bdev.
336To create Null bdev RPC command `bdev_null_create` should be used.
337
338Example command
339
340`rpc.py bdev_null_create Null0 8589934592 4096`
341
342This command will create an 8 petabyte `Null0` device with block size 4096.
343
344To delete a null bdev use the bdev_null_delete command.
345
346`rpc.py bdev_null_delete Null0`
347
348# NVMe bdev {#bdev_config_nvme}
349
350There are two ways to create block device based on NVMe device in SPDK. First
351way is to connect local PCIe drive and second one is to connect NVMe-oF device.
352In both cases user should use `bdev_nvme_attach_controller` RPC command to achieve that.
353
354Example commands
355
356`rpc.py bdev_nvme_attach_controller -b NVMe1 -t PCIe -a 0000:01:00.0`
357
358This command will create NVMe bdev of physical device in the system.
359
360`rpc.py bdev_nvme_attach_controller -b Nvme0 -t RDMA -a 192.168.100.1 -f IPv4 -s 4420 -n nqn.2016-06.io.spdk:cnode1`
361
362This command will create NVMe bdev of NVMe-oF resource.
363
364To remove an NVMe controller use the bdev_nvme_detach_controller command.
365
366`rpc.py bdev_nvme_detach_controller Nvme0`
367
368This command will remove NVMe bdev named Nvme0.
369
370## NVMe bdev character device {#bdev_config_nvme_cuse}
371
372This feature is considered as experimental. You must configure with --with-nvme-cuse
373option to enable this RPC.
374
375Example commands
376
377`rpc.py bdev_nvme_cuse_register -n Nvme3
378
379This command will register a character device under /dev/spdk associated with Nvme3
380controller. If there are namespaces created on Nvme3 controller, a namespace
381character device is also created for each namespace.
382
383For example, the first controller registered will have a character device path of
384/dev/spdk/nvmeX, where X is replaced with a unique integer to differentiate it from
385other controllers.  Note that this 'nvmeX' name here has no correlation to the name
386associated with the controller in SPDK.  Namespace character devices will have a path
387of /dev/spdk/nvmeXnY, where Y is the namespace ID.
388
389Cuse devices are removed from system, when NVMe controller is detached or unregistered
390with command:
391
392`rpc.py bdev_nvme_cuse_unregister -n Nvme0`
393
394# Logical volumes {#bdev_ug_logical_volumes}
395
396The Logical Volumes library is a flexible storage space management system. It allows
397creating and managing virtual block devices with variable size on top of other bdevs.
398The SPDK Logical Volume library is built on top of @ref blob. For detailed description
399please refer to @ref lvol.
400
401## Logical volume store {#bdev_ug_lvol_store}
402
403Before creating any logical volumes (lvols), an lvol store has to be created first on
404selected block device. Lvol store is lvols vessel responsible for managing underlying
405bdev space assignment to lvol bdevs and storing metadata. To create lvol store user
406should use using `bdev_lvol_create_lvstore` RPC command.
407
408Example command
409
410`rpc.py bdev_lvol_create_lvstore Malloc2 lvs -c 4096`
411
412This will create lvol store named `lvs` with cluster size 4096, build on top of
413`Malloc2` bdev. In response user will be provided with uuid which is unique lvol store
414identifier.
415
416User can get list of available lvol stores using `bdev_lvol_get_lvstores` RPC command (no
417parameters available).
418
419Example response
420~~~
421{
422  "uuid": "330a6ab2-f468-11e7-983e-001e67edf35d",
423  "base_bdev": "Malloc2",
424  "free_clusters": 8190,
425  "cluster_size": 8192,
426  "total_data_clusters": 8190,
427  "block_size": 4096,
428  "name": "lvs"
429}
430~~~
431
432To delete lvol store user should use `bdev_lvol_delete_lvstore` RPC command.
433
434Example commands
435
436`rpc.py bdev_lvol_delete_lvstore -u 330a6ab2-f468-11e7-983e-001e67edf35d`
437
438`rpc.py bdev_lvol_delete_lvstore -l lvs`
439
440## Lvols {#bdev_ug_lvols}
441
442To create lvols on existing lvol store user should use `bdev_lvol_create` RPC command.
443Each created lvol will be represented by new bdev.
444
445Example commands
446
447`rpc.py bdev_lvol_create lvol1 25 -l lvs`
448
449`rpc.py bdev_lvol_create lvol2 25 -u 330a6ab2-f468-11e7-983e-001e67edf35d`
450
451# Passthru {#bdev_config_passthru}
452
453The SPDK Passthru virtual block device module serves as an example of how to write a
454virtual block device module. It implements the required functionality of a vbdev module
455and demonstrates some other basic features such as the use of per I/O context.
456
457Example commands
458
459`rpc.py bdev_passthru_create -b aio -p pt`
460
461`rpc.py bdev_passthru_delete pt`
462
463# Pmem {#bdev_config_pmem}
464
465The SPDK pmem bdev driver uses pmemblk pool as the target for block I/O operations. For
466details on Pmem memory please refer to PMDK documentation on http://pmem.io website.
467First, user needs to configure SPDK to include PMDK support:
468
469`configure --with-pmdk`
470
471To create pmemblk pool for use with SPDK user should use `bdev_pmem_create_pool` RPC command.
472
473Example command
474
475`rpc.py bdev_pmem_create_pool /path/to/pmem_pool 25 4096`
476
477To get information on created pmem pool file user can use `bdev_pmem_get_pool_info` RPC command.
478
479Example command
480
481`rpc.py bdev_pmem_get_pool_info /path/to/pmem_pool`
482
483To remove pmem pool file user can use `bdev_pmem_delete_pool` RPC command.
484
485Example command
486
487`rpc.py bdev_pmem_delete_pool /path/to/pmem_pool`
488
489To create bdev based on pmemblk pool file user should use `bdev_pmem_create ` RPC
490command.
491
492Example command
493
494`rpc.py bdev_pmem_create /path/to/pmem_pool -n pmem`
495
496To remove a block device representation use the bdev_pmem_delete command.
497
498`rpc.py bdev_pmem_delete pmem`
499
500# RAID {#bdev_ug_raid}
501
502RAID virtual bdev module provides functionality to combine any SPDK bdevs into
503one RAID bdev. Currently SPDK supports only RAID 0. RAID functionality does not
504store on-disk metadata on the member disks, so user must recreate the RAID
505volume when restarting application. User may specify member disks to create RAID
506volume event if they do not exists yet - as the member disks are registered at
507a later time, the RAID module will claim them and will surface the RAID volume
508after all of the member disks are available. It is allowed to use disks of
509different sizes - the smallest disk size will be the amount of space used on
510each member disk.
511
512Example commands
513
514`rpc.py bdev_raid_create -n Raid0 -z 64 -r 0 -b "lvol0 lvol1 lvol2 lvol3"`
515
516`rpc.py bdev_raid_get_bdevs`
517
518`rpc.py bdev_raid_delete Raid0`
519
520# Split {#bdev_ug_split}
521
522The split block device module takes an underlying block device and splits it into
523several smaller equal-sized virtual block devices. This serves as an example to create
524more vbdevs on a given base bdev for user testing.
525
526Example commands
527
528To create four split bdevs with base bdev_b0 use the `bdev_split_create` command.
529Each split bdev will be one fourth the size of the base bdev.
530
531`rpc.py bdev_split_create bdev_b0 4`
532
533The `split_size_mb`(-s) parameter restricts the size of each split bdev.
534The total size of all split bdevs must not exceed the base bdev size.
535
536`rpc.py bdev_split_create bdev_b0 4 -s 128`
537
538To remove the split bdevs, use the `bdev_split_delete` command with the base bdev name.
539
540`rpc.py bdev_split_delete bdev_b0`
541
542# Uring {#bdev_ug_uring}
543
544The uring bdev module issues I/O to kernel block devices using the io_uring Linux kernel API. This module requires liburing.
545For more information on io_uring refer to kernel [IO_uring] (https://kernel.dk/io_uring.pdf)
546
547The user needs to configure SPDK to include io_uring support:
548
549`configure --with-uring`
550
551To create a uring bdev with given filename, bdev name and block size use the `bdev_uring_create` RPC.
552
553`rpc.py  bdev_uring_create /path/to/device bdev_u0 512`
554
555To remove a uring bdev use the `bdev_uring_delete` RPC.
556
557`rpc.py bdev_uring_delete bdev_u0`
558
559# Virtio Block {#bdev_config_virtio_blk}
560
561The Virtio-Block driver allows creating SPDK bdevs from Virtio-Block devices.
562
563The following command creates a Virtio-Block device named `VirtioBlk0` from a vhost-user
564socket `/tmp/vhost.0` exposed directly by SPDK @ref vhost. Optional `vq-count` and
565`vq-size` params specify number of request queues and queue depth to be used.
566
567`rpc.py bdev_virtio_attach_controller --dev-type blk --trtype user --traddr /tmp/vhost.0 --vq-count 2 --vq-size 512 VirtioBlk0`
568
569The driver can be also used inside QEMU-based VMs. The following command creates a Virtio
570Block device named `VirtioBlk0` from a Virtio PCI device at address `0000:00:01.0`.
571The entire configuration will be read automatically from PCI Configuration Space. It will
572reflect all parameters passed to QEMU's vhost-user-scsi-pci device.
573
574`rpc.py bdev_virtio_attach_controller --dev-type blk --trtype pci --traddr 0000:01:00.0 VirtioBlk1`
575
576Virtio-Block devices can be removed with the following command
577
578`rpc.py bdev_virtio_detach_controller VirtioBlk0`
579
580# Virtio SCSI {#bdev_config_virtio_scsi}
581
582The Virtio-SCSI driver allows creating SPDK block devices from Virtio-SCSI LUNs.
583
584Virtio-SCSI bdevs are created the same way as Virtio-Block ones.
585
586`rpc.py bdev_virtio_attach_controller --dev-type scsi --trtype user --traddr /tmp/vhost.0 --vq-count 2 --vq-size 512 VirtioScsi0`
587
588`rpc.py bdev_virtio_attach_controller --dev-type scsi --trtype pci --traddr 0000:01:00.0 VirtioScsi0`
589
590Each Virtio-SCSI device may export up to 64 block devices named VirtioScsi0t0 ~ VirtioScsi0t63,
591one LUN (LUN0) per SCSI device. The above 2 commands will output names of all exposed bdevs.
592
593Virtio-SCSI devices can be removed with the following command
594
595`rpc.py bdev_virtio_detach_controller VirtioScsi0`
596
597Removing a Virtio-SCSI device will destroy all its bdevs.
598