module/delay_bdev: remove unreachable code.

Fixing kw warning 10412.

Signed-off-by: Seth Howell <seth.howell@intel.com>
Change-Id: I947af63e091f56b772db886b2a126dfa3b78ffa4
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1949
Community-CI: Mellanox Build Bot
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com>
This commit is contained in:
Seth Howell 2020-04-20 18:20:53 -07:00 committed by Tomasz Zawadzki
parent 3667603765
commit aa0dad5730

View File

@ -37,6 +37,7 @@
#include "spdk/util.h"
#include "spdk/string.h"
#include "spdk_internal/log.h"
#include "spdk_internal/assert.h"
struct rpc_update_latency {
char *delay_bdev_name;
@ -100,10 +101,7 @@ spdk_rpc_bdev_delay_update_latency(struct spdk_jsonrpc_request *request,
"The requested bdev is not a delay bdev.");
goto cleanup;
} else if (rc) {
/* currently, only the two error cases are defined. Any new error paths should be handled here. */
spdk_jsonrpc_send_error_response(request, SPDK_JSONRPC_ERROR_INTERNAL_ERROR,
"An unknown error occured.");
goto cleanup;
SPDK_UNREACHABLE();
}
w = spdk_jsonrpc_begin_result(request);