From 7e1a85aff2a5542afbdcf0e87582559278948e59 Mon Sep 17 00:00:00 2001 From: Shuhei Matsumoto Date: Tue, 13 Oct 2020 22:55:52 +0900 Subject: [PATCH] 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 Change-Id: I6de7db9769a20ad8435292a6fb302f102ef5d68d Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/4646 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins Reviewed-by: Jim Harris Reviewed-by: Aleksey Marchuk --- CHANGELOG.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4872dba49..265382091 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.