Commit 3f912cf0 authored by Michal Berger's avatar Michal Berger Committed by Tomasz Zawadzki
Browse files

misc: Fix spelling mistakes



Found with misspell-fixer.

Signed-off-by: default avatarMichal Berger <michal.berger@intel.com>
Change-Id: If062df0189d92e4fb2da3f055fb981909780dc04
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15207


Reviewed-by: default avatarTomasz Zawadzki <tomasz.zawadzki@intel.com>
Reviewed-by: default avatarShuhei Matsumoto <smatsumoto@nvidia.com>
Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
parent acd2cc94
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2075,7 +2075,7 @@ A new `spdk_bdev_open_ext` function has been added and `spdk_bdev_open` function
The new open function introduces requirement to provide callback function that will be called by
asynchronous event such as bdev removal. `spdk_bdev_open_ext` function takes bdev name as
an argument instead of bdev structure to avoid a race condition that can happen when the bdev
is being removed between a call to get its structure based on a name and actually openning it.
is being removed between a call to get its structure based on a name and actually opening it.

New 'resize' event has been added to notify about change of block count property of block device.
Event is delivered only if block device was opened with `spdk_bdev_open_ext` function.
@@ -3001,7 +3001,7 @@ Net framework initialization and finish is now done asynchronously.

Added `spdk_rpc_is_method_allowed` function for checking whether method is permitted in a given state.
Added `spdk_rpc_get_state` to check current state of RPC server.
RPC `wait_subsystem_init` has been added to allow clients to block untill all subsystems are initialized.
RPC `wait_subsystem_init` has been added to allow clients to block until all subsystems are initialized.

### json rpc

@@ -3299,7 +3299,7 @@ to link only the minimal set of components required.
### git pre-commit and pre-push hooks

The pre-commit hook will run `scripts/check_format.sh` and verify there are no
formating errors before allowing `git commit` to run. The pre-push hook runs
formatting errors before allowing `git commit` to run. The pre-push hook runs
`make CONFIG_WERROR=y` with and without `CONFIG_DEBUG=y` using both the gcc and
clang compiler before allowing `git push` to run. Following each DEBUG build
`test/unit/unittest.sh` is run and verified. Results are recorded in the
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ CONFIG_CRYPTO=n
# Build spdk shared libraries in addition to the static ones.
CONFIG_SHARED=n

# Build with VTune suport.
# Build with VTune support.
CONFIG_VTUNE=n
CONFIG_VTUNE_DIR=

+2 −2
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ Design software to deal with the inability to get a channel.
There are several dependencies to leverage the Linux idxd driver for driving DSA devices.

1 Linux kernel support: You need to have a Linux kernel with the `idxd` driver
loaded. Futher, add the following command line options to the kernel boot
loaded. Further, add the following command line options to the kernel boot
commands:

```bash
@@ -170,5 +170,5 @@ The following RPCs would accomplish the copy override:
}
```

To detemine the name of available modules and their supported operations use the
To determine the name of available modules and their supported operations use the
RPC `accel_get_module_info`.
+1 −1
Original line number Diff line number Diff line
@@ -145,7 +145,7 @@ well as on the base devices. The following types of metadata are persisted:

After power failure, FTL needs to rebuild the whole L2P using the address maps (`P2L`) stored within each band/chunk.
This needs to done, because while individual L2P pages may have been paged out and persisted to the cache device,
there's no way to tell which, if any, pages were dirty before the power failure occured. The P2L consists of not only
there's no way to tell which, if any, pages were dirty before the power failure occurred. The P2L consists of not only
the mapping itself, but also a sequence id (`seq_id`), which describes the relative age of a given logical block
(multiple writes to the same logical block would produce the same amount of P2L entries, only the last one having the current data).

+1 −1
Original line number Diff line number Diff line
@@ -175,7 +175,7 @@ iterate the spdk lists and build iterable representations of the list objects.
This will result in errors if these are not available which is very possible if
gdb is used for reasons other than debugging spdk core dumps.

In the example bellow, I attempted to load the macros when the globals are not
In the example below, I attempted to load the macros when the globals are not
available causing gdb to fail loading the gdb_macros:

~~~{.sh}
Loading