Commit 0ca38901 authored by Tomasz Zawadzki's avatar Tomasz Zawadzki
Browse files

CHANGELOG: fix typos and order of entries for SPDK 23.09



Fix typos, formatting and order of entries.

No new entry is added or removed in this patch.

Signed-off-by: default avatarTomasz Zawadzki <tomasz.zawadzki@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/20121

 (master)

(cherry picked from commit 8ea136dc)
Change-Id: Iabf66ae809ca1d8d3eb03ca0b0d170ca63a4e59a
Signed-off-by: default avatarKrzysztof Karas <krzysztof.karas@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/20157


Reviewed-by: default avatarTomasz Zawadzki <tomasz.zawadzki@intel.com>
Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarKonrad Sztyber <konrad.sztyber@intel.com>
parent 3f73c08e
Loading
Loading
Loading
Loading
+14 −14
Original line number Diff line number Diff line
@@ -8,9 +8,20 @@ Updated DPDK submodule to DPDK 23.03.

### env

The `phys_addr` parameter in spdk_*_malloc() functions is now invalid. Passing non-NULL value
The `phys_addr` parameter in `spdk_*_malloc()` functions is now invalid. Passing non-NULL value
will return NULL from the functions. The parameter was deprecated in SPDK 19.04.
For retrieving physical addresses, spdk_vtophys() should be used instead.
For retrieving physical addresses, `spdk_vtophys()` should be used instead.

### init

Options for the JSON-RPC server initialization were added. The options are defined via the
`spdk_rpc_opts` structure and is passed to the existing API `spdk_rpc_initialize()` as a new
argument. The options include `log_file` and `log_level`.

### jsonrpc

New APIs, `spdk_jsonrpc_set_log_level` and `spdk_jsonrpc_set_log_file`, were added to enable
logging JSON RPC calls history.

### log

@@ -33,22 +44,11 @@ The TCP transport will now calculate data digest using the accel sequence APIs i

The `spdk_nvmf_request::data` field has been removed: instead, clients should set
`->iov` and `->iovcnt` appropriately, as nvmf request APIs now expect any data
buffers to be described there. spdk_nvmf_request_get_data() has been removed.
buffers to be described there. `spdk_nvmf_request_get_data()` has been removed.

`transport` field in `listen_addresses` of `nvmf_get_subsystems` RPC is deprecated.
`trtype` field should be used instead. `transport` field will be removed in 24.01 release.

### jsonrpc

New APIs, `spdk_jsonrpc_set_log_level` and `spdk_jsonrpc_set_log_file`, were added to enable
logging JSON RPC calls history.

### init

Options for the JSON-RPC server initialization were added. The options are defined via the
`spdk_rpc_opts` structure and is passed to the existing API `spdk_rpc_initialize()` as a new
argument. The options include `log_file` and `log_level`.

## v23.05

### accel