Commit 34edd9f1 authored by Kamil Godzwon's avatar Kamil Godzwon Committed by Tomasz Zawadzki
Browse files

general: fix misspells and typos



Signed-off-by: default avatarKamil Godzwon <kamilx.godzwon@intel.com>
Change-Id: Iab206ef526eb7032c6681a3145450010c91705a4
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24120


Community-CI: Mellanox Build Bot
Reviewed-by: default avatarKarol Latecki <karol.latecki@intel.com>
Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarAleksey Marchuk <alexeymar@nvidia.com>
Reviewed-by: default avatarJim Harris <jim.harris@samsung.com>
parent 33712560
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -389,7 +389,7 @@ buffers to be described there. `spdk_nvmf_request_get_data()` has been removed.
Added `spdk_nvmf_subsystem_add_listener_ext()` API for accepting new connections on the provided
address, now allowing to specify additional options for the listener.

Deprecated `spdk_nvmf_subsytem_any_listener_allowed()` API (to be removed in 24.01) and replaced with
Deprecated `spdk_nvmf_subsystem_any_listener_allowed()` API (to be removed in 24.01) and replaced with
spdk_nvmf_subsystem_any_listener_allowed()` API fixing the typo.

Added `spdk_nvmf_subsystem_is_discovery()` API to check whether a given susbystem is discovery subsystem.
@@ -424,7 +424,7 @@ should have equal length and key size in hexlified form can be either 32 bytes f
dropped, only plain text mode is supported.

The accel library will now collect statistics on the number of executed operations and processed
bytes.  These statistics can be retreived using the `accel_get_stats` RPC.
bytes.  These statistics can be retrieved using the `accel_get_stats` RPC.

Added support for appending a crc32 calculation to an accel sequence.

+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ for encryption/decryption.
SPDK uses various functions from OpenSSL library to perform tasks like key derivation in
[NVMe TCP](https://github.com/spdk/spdk/blob/master/include/spdk_internal/nvme_tcp.h) and TLS
handshake in [socket module](https://github.com/spdk/spdk/blob/master/module/sock/posix/posix.c).
OpenSSL delivers code implemenations via
OpenSSL delivers code implementations via
[providers](https://www.openssl.org/docs/man3.0/man7/provider.html).

One of such providers delivers Federal Information Processing Standards (FIPS) compliant functions,
+1 −1
Original line number Diff line number Diff line
@@ -102,7 +102,7 @@ on each other, multiple calls need to be issued.

## Configuring Logical Volumes

There is no static configuration available for logical volumes. All configuration is done trough RPC. Information about
There is no static configuration available for logical volumes. All configuration is done through RPC. Information about
logical volumes is kept on block devices.

## RPC overview {#lvol_rpc}
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ entirely dissimilar from Linux's

More recently, the library has been improved to also connect to remote NVMe
devices via NVMe over Fabrics. Users may now call spdk_nvme_probe() on both
local PCI busses and on remote NVMe over Fabrics discovery services. The API is
local PCI buses and on remote NVMe over Fabrics discovery services. The API is
otherwise unchanged.

## Examples {#nvme_examples}
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ DMA buffer.

* In some systems when performing peer-2-peer DMAs between PCIe EPs
  that are directly connected to the Root Complex (RC) the DMA may
  fail or the performance may not be great. Basically your milage may
  fail or the performance may not be great. Basically your mileage may
  vary. It is recommended that you use a PCIe switch (such as those
  provided by Broadcom or Microsemi) as that is know to provide good
  performance.
Loading