Commit 63ee471b authored by Maciej Wawryk's avatar Maciej Wawryk Committed by Jim Harris
Browse files

markdownlint: enable rule MD040



MD040 - Fenced code blocks should have a language specified
Fixed all errors

Signed-off-by: default avatarMaciej Wawryk <maciejx.wawryk@intel.com>
Change-Id: Iddd307068c1047ca9a0bb12c1b0d9c88f496765f
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/9272


Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com>
Community-CI: Mellanox Build Bot
Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarTomasz Zawadzki <tomasz.zawadzki@intel.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
parent 1c81d1af
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1882,7 +1882,7 @@ Preliminary support for cross compilation is now available. Targeting an older
CPU on the same architecture using your native compiler can be accomplished by
using the `--target-arch` option to `configure` as follows:

~~~
~~~bash
./configure --target-arch=broadwell
~~~

@@ -1890,7 +1890,7 @@ Additionally, some support for cross-compiling to other architectures has been
added via the `--cross-prefix` argument to `configure`. To cross-compile, set CC
and CXX to the cross compilers, then run configure as follows:

~~~
~~~bash
./configure --target-arch=aarm64 --cross-prefix=aarch64-linux-gnu
~~~

+3 −1
Original line number Diff line number Diff line
@@ -129,7 +129,9 @@ Boolean (on/off) options are configured with a 'y' (yes) or 'n' (no). For
example, this line of `CONFIG` controls whether the optional RDMA (libibverbs)
support is enabled:

~~~{.sh}
CONFIG_RDMA?=n
~~~

To enable RDMA, this line may be added to `mk/config.mk` with a 'y' instead of
'n'. For the majority of options this can be done using the `configure` script.
+1 −1
Original line number Diff line number Diff line
@@ -151,7 +151,7 @@ Whenever the `CPU mask` is mentioned it is a string in one of the following form

The following CPU masks are equal and correspond to CPUs 0, 1, 2, 8, 9, 10, 11 and 12:

~~~
~~~bash
0x1f07
0x1F07
1f07
+1 −1
Original line number Diff line number Diff line
@@ -236,7 +236,7 @@ Example command

### Creating a GPT partition table using NBD {#bdev_ug_gpt_create_part}

~~~
~~~bash
# Expose bdev Nvme0n1 as kernel block device /dev/nbd0 by JSON-RPC
rpc.py nbd_start_disk Nvme0n1 /dev/nbd0

+4 −4
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@ In these examples, the value "X" will represent the special value (2^64-1) descr

### Initial Creation

```
```text
                  +--------------------+
  Backing Device  |                    |
                  +--------------------+
@@ -123,7 +123,7 @@ In these examples, the value "X" will represent the special value (2^64-1) descr
  store the 16KB of data.
* Write the chunk map index to entry 2 in the logical map.

```
```text
                  +--------------------+
  Backing Device  |01                  |
                  +--------------------+
@@ -157,7 +157,7 @@ In these examples, the value "X" will represent the special value (2^64-1) descr
* Write (2, X, X, X) to the chunk map.
* Write the chunk map index to entry 0 in the logical map.

```
```text
                  +--------------------+
  Backing Device  |012                 |
                  +--------------------+
@@ -205,7 +205,7 @@ In these examples, the value "X" will represent the special value (2^64-1) descr
* Free chunk map 1 back to the free chunk map list.
* Free backing IO unit 2 back to the free backing IO unit list.

```
```text
                  +--------------------+
  Backing Device  |01 34               |
                  +--------------------+
Loading