Commit a41c0316 authored by Karol Latecki's avatar Karol Latecki Committed by Tomasz Zawadzki
Browse files

Fix Markdown MD012 linter warnings - multiple blank lines



MD012 - Multiple consecutive blank lines

Signed-off-by: default avatarKarol Latecki <karol.latecki@intel.com>
Change-Id: I3f48cdc54b1587c9ef2185b88f608ba8420f738b
Signed-off-by: default avatarKarol Latecki <karol.latecki@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/654


Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
Reviewed-by: default avatarShuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
parent c344dac9
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -1908,7 +1908,6 @@ See the [Virtio SCSI](http://www.spdk.io/doc/virtio.html) documentation and [Get

The vhost target application now supports live migration between QEMU instances.


## v17.07: Build system improvements, userspace vhost-blk target, and GPT bdev

### Build System
@@ -1985,7 +1984,6 @@ This analysis provides:

See the VTune Amplifier documentation for more information.


## v17.03: Blobstore and userspace vhost-scsi target

### Blobstore and BlobFS
@@ -2225,7 +2223,6 @@ This release adds a user-space driver with support for the Intel I/O Acceleratio
  - Declarations and `nvme/identify` support for Intel SSD DC P3700 series vendor-specific log pages and features
- Updated to support DPDK 2.2.0


## v1.0.0: NVMe user-space driver

This is the initial open source release of the Storage Performance Development Kit (SPDK).
+0 −1
Original line number Diff line number Diff line
@@ -47,7 +47,6 @@ Param | Long Param | Type | Default | Descript
|        | --huge-dir             | string   | the first discovered   | allocate hugepages from a specific mount
-L       | --logflag              | string   |                        | @ref cmd_arg_debug_log_flags


### Configuration file {#cmd_arg_config_file}

Historically, the SPDK applications were configured using a configuration file.
+0 −1
Original line number Diff line number Diff line
@@ -87,7 +87,6 @@ The Blobstore defines a hierarchy of storage abstractions as follows.
                                        35,
                                        { alignment: 'center', fill: 'white' });


        for (var j = 0; j < 4; j++) {
            let pageWidth = 100;
            let pageHeight = canvasHeight;
+0 −2
Original line number Diff line number Diff line
@@ -51,14 +51,12 @@ metadata is split in two parts:
   sequence number, etc.), located at the beginning blocks of the band,
 * the tail part, containing the address map and the valid map, located at the end of the band.


       head metadata               band's data               tail metadata
    +-------------------+-------------------------------+------------------------+
    |zone 1 |...|zone n |...|...|zone 1 |...|           | ... |zone  m-1 |zone  m|
    |block 1|   |block 1|   |   |block x|   |           |     |block y   |block y|
    +-------------------+-------------+-----------------+------------------------+


Bands are written sequentially (in a way that was described earlier). Before a band can be written
to, all of its zones need to be erased. During that time, the band is considered to be in a `PREP`
state. After that is done, the band transitions to the `OPENING` state, in which head metadata
+0 −5
Original line number Diff line number Diff line
@@ -2227,7 +2227,6 @@ Example response:
}
~~~


## bdev_pmem_create_pool {#rpc_bdev_pmem_create_pool}

Create a @ref bdev_config_pmem blk pool file. It is equivalent of following `pmempool create` command:
@@ -4642,7 +4641,6 @@ ctrlr | Required | string | Controller name
io_queues               | Required | number      | Number between 1 and 31 of IO queues for the controller
cpumask                 | Optional | string      | @ref cpu_mask for this controller


### Example

Example request:
@@ -4724,7 +4722,6 @@ bdev_name | Required | string | Name of bdev to expose block
readonly                | Optional | boolean     | If true, this target will be read only (default: false)
cpumask                 | Optional | string      | @ref cpu_mask for this controller


### Example

Example request:
@@ -4764,7 +4761,6 @@ Name | Optional | Type | Description
----------------------- | -------- | ----------- | -----------
name                    | Optional | string      | Vhost controller name


### Response {#rpc_vhost_get_controllers_response}

Response is an array of objects describing requested controller(s). Common fields are:
@@ -5526,7 +5522,6 @@ strip_size_kb | Required | number | Strip size in KB
raid_level              | Required | number      | RAID level
base_bdevs              | Required | string      | Base bdevs name, whitespace separated list in quotes


### Example

Example request:
Loading