CHANGELOG: Move bdev_examine_bdev from bdev section to RPC section

bdev_examine_bdev is not a public SPDK API but a JSON RPC method.
Hence move the description from the bdev section to the RPC section.
Additionally, clarify auto_examine is disabled by setting bdev_auto_examine
of the RPC bdev_set_options to false.

Signed-off-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Change-Id: I6de7db9769a20ad8435292a6fb302f102ef5d68d
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/4646
Community-CI: Mellanox Build Bot
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com>
This commit is contained in:
Shuhei Matsumoto 2020-10-13 22:55:52 +09:00 committed by Tomasz Zawadzki
parent bba9e8dbca
commit 7e1a85aff2

View File

@ -2,11 +2,6 @@
## v20.10: (Upcoming Release)
### bdev
A new API was added `bdev_examine_bdev` that allows users to examine a
bdev explicitly. It can be used only if auto_examine is disabled.
### dpdk
Updated DPDK submodule to DPDK 20.08.
@ -45,6 +40,9 @@ not enabled.
A new optional parameter `enable_placement_id` was added to the `sock_impl_set_options`
RPC.
A new RPC `bdev_examine_bdev` was added to allow users to examine a bdev explicitly.
It can be used only if bdev_auto_examine is set to false by the RPC `bdev_set_options`.
### Miscellaneous
The contents of the log_rpc library have been moved to the event library. The log_rpc
@ -57,6 +55,7 @@ The contents of the bdev_rpc library have been moved to the bdev library. The ap
library now no longer exists.
### scsi
Two new APIs have been added `spdk_scsi_dev_construct_ext` and
`spdk_scsi_dev_add_lun_ext` that allow the upper layer(e.g. vhost-scsi) to
receive the notification when the scsi bdev has been resized.