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

Fix Markdown MD022 linter warnings - headers blank lines



MD022 Headers should be surrounded by blank lines

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


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 8ba413a7
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
## v20.04: (Upcoming Release)

### vmd

A new function, `spdk_vmd_fini`, has been added. It releases all resources acquired by the VMD
library through the `spdk_vmd_init` call.

@@ -1404,6 +1405,7 @@ spdk_bdev_get_qd(), spdk_bdev_get_qd_sampling_period(), and
spdk_bdev_set_qd_sampling_period().

### RAID module

A new bdev module called "raid" has been added as experimental module which
aggregates underlying NVMe bdevs and exposes a single raid bdev. Please note
that vhost will not work with this module because it does not yet have support
+5 −0
Original line number Diff line number Diff line
@@ -5,15 +5,19 @@ See [The SPDK Community Page](http://www.spdk.io/community/) for other SPDK comm
<!--- Provide a general summary of the issue in the Title above -->

## Expected Behavior

<!--- Tell us what should happen -->

## Current Behavior

<!--- Tell us what happens instead of the expected behavior -->

## Possible Solution

<!--- Not obligatory, but suggest a fix/reason for the bug, -->

## Steps to Reproduce

<!--- Provide a link to a live example, or an unambiguous set of steps to -->
<!--- reproduce this bug. Include code to reproduce, if relevant -->
1.
@@ -22,4 +26,5 @@ See [The SPDK Community Page](http://www.spdk.io/community/) for other SPDK comm
4.

## Context (Environment including OS version, SPDK version, etc.)

<!--- Providing context helps us come up with a solution that is most useful in the real world -->
+9 −0
Original line number Diff line number Diff line
# Storage Performance Development Kit {#index}

# Introduction

@copydoc intro

# Concepts

@copydoc concepts

# User Guides

@copydoc user_guides

# Programmer Guides

@copydoc prog_guides

# General Information

@copydoc general

# Miscellaneous

@copydoc misc

# Driver Modules

@copydoc driver_modules

# Tools

@copydoc tools

# Performance Reports

@copydoc performance_reports
+1 −0
Original line number Diff line number Diff line
# Notify library {#notify}

The notify library implements an event bus, allowing users to register, generate,
and listen for events. For example, the bdev library may register a new event type
for bdev creation. Any time a bdev is created, it "sends" the event. Consumers of
+2 −0
Original line number Diff line number Diff line
@@ -131,10 +131,12 @@ To build nvmf_tgt with the FC transport, there is an additional FC LLD (Low Leve
Please contact your FC vendor for instructions to obtain FC driver module.

### Broadcom FC LLD code

FC LLD driver for Broadcom FC NVMe capable adapters can be obtained from,
https://github.com/ecdufcdrvr/bcmufctdrvr.

### Fetch FC LLD module and then build SPDK with FC enabled:

After cloning SPDK repo and initialize submodules, FC LLD library is built which then can be linked with
the fc transport.

Loading