bdev/aio: remove deprecated "fname" RPC parameter

Change-Id: I4465326b4fb148fcc825245a1f08b72b7d8ed91a
Signed-off-by: Pawel Wodkowski <pawelx.wodkowski@intel.com>
Reviewed-on: https://review.gerrithub.io/403841
Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Dariusz Stojaczyk <dariuszx.stojaczyk@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
This commit is contained in:
Pawel Wodkowski 2018-03-14 17:27:45 +01:00 committed by Jim Harris
parent b745f41f27
commit 523b208f17

View File

@ -52,7 +52,6 @@ free_rpc_construct_aio(struct rpc_construct_aio *req)
static const struct spdk_json_object_decoder rpc_construct_aio_decoders[] = { static const struct spdk_json_object_decoder rpc_construct_aio_decoders[] = {
{"name", offsetof(struct rpc_construct_aio, name), spdk_json_decode_string}, {"name", offsetof(struct rpc_construct_aio, name), spdk_json_decode_string},
{"fname", offsetof(struct rpc_construct_aio, filename), spdk_json_decode_string, true}, /* deprecated - use "filename" */
{"filename", offsetof(struct rpc_construct_aio, filename), spdk_json_decode_string, true}, {"filename", offsetof(struct rpc_construct_aio, filename), spdk_json_decode_string, true},
{"block_size", offsetof(struct rpc_construct_aio, block_size), spdk_json_decode_uint32, true}, {"block_size", offsetof(struct rpc_construct_aio, block_size), spdk_json_decode_uint32, true},
}; };