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

Fix Markdown MD026 linter warnings - trailing punctuation in header



MD026 Trailing punctuation in header

This rule is triggered on any header that has a
punctuation character as the last character in the line

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


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 93be26a5
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -199,7 +199,7 @@ code for fused compare-and-write operation.

Added spdk_bdev_get_acwu function for getting block device atomic compare and write unit size.

## v19.10:
## v19.10

### rpc

@@ -429,7 +429,7 @@ New cache modes added to use via RPC, wi - write invalidate and wa - write aroun

New version of OCF provides fully asynchronous management API.

## v19.07:
## v19.07

### ftl

@@ -705,7 +705,7 @@ with SPDK thread when necessary.
Added spdk_thread_destroy() to allow framework polling the thread to
release resources associated with that thread.

## v19.04:
## v19.04

### nvme

@@ -926,7 +926,7 @@ Added "reduce" block compression scheme based on using SSDs for storing
compressed blocks of storage and presistent memory for metadata. Please see
[compression](https://spdk.io/doc/bdev.html) for more details.

## v19.01:
## v19.01

### ocf bdev

@@ -1181,7 +1181,7 @@ JSON RPC client is now running in non-blocking mode. Requests are sent and recei
JSON RPC server can now recieve a callback on connection termination or server shutdown using `spdk_jsonrpc_conn_add_close_cb`
and `spdk_jsonrpc_conn_del_close_cb`.

## v18.10:
## v18.10

### nvme

@@ -1378,7 +1378,7 @@ in QEMU.
The SPDKCLI interactive command tool for managing SPDK is no longer considered experimental.
Support for the iSCSI and NVMe-oF targets has been added.

## v18.07:
## v18.07

### bdev

+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ The development kit currently includes:
* [vhost target](http://www.spdk.io/doc/vhost.html)
* [Virtio-SCSI driver](http://www.spdk.io/doc/virtio.html)

# In this readme:
# In this readme

* [Documentation](#documentation)
* [Prerequisites](#prerequisites)
+1 −1
Original line number Diff line number Diff line
# What is SPDK? {#about}
# What is SPDK {#about}

The Storage Performance Development Kit (SPDK) provides a set of tools and
libraries for writing high performance, scalable, user-mode storage
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ NAND too.

## Theory of Operation {#blob_pg_theory}

### Abstractions:
### Abstractions

The Blobstore defines a hierarchy of storage abstractions as follows.

+2 −2
Original line number Diff line number Diff line
@@ -196,7 +196,7 @@ Error occurred in Python command: No symbol table is loaded. Use the "file"
command.
~~~

# Macros available:
# Macros available

- spdk_load_macros: load the macros (use --reload in order to reload them)
- spdk_print_bdevs: information about bdevs
@@ -205,7 +205,7 @@ command.
- spdk_print_nvmf_subsystems: information about nvmf subsystems
- spdk_print_threads: information about threads

# Adding New Macros:
# Adding New Macros

The list iteration macros are usually built from 3 layers:

Loading