From 0ee07a484e7d02c0b39a960d4eb6586beb751505 Mon Sep 17 00:00:00 2001 From: Shuhei Matsumoto Date: Fri, 4 Feb 2022 07:31:06 +0900 Subject: [PATCH] bdev/nvme: Missing newline (\n) for SPDK_ERRLOG Signed-off-by: Shuhei Matsumoto Change-Id: I77711a6d3fdbaf6698ebec5a233cf6cd795726ba Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/11401 Community-CI: Mellanox Build Bot Community-CI: Broadcom CI Tested-by: SPDK CI Jenkins Reviewed-by: Jim Harris Reviewed-by: Aleksey Marchuk Reviewed-by: Dong Yi --- module/bdev/nvme/bdev_nvme_rpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/bdev/nvme/bdev_nvme_rpc.c b/module/bdev/nvme/bdev_nvme_rpc.c index 571b12422..2bca90a65 100644 --- a/module/bdev/nvme/bdev_nvme_rpc.c +++ b/module/bdev/nvme/bdev_nvme_rpc.c @@ -408,7 +408,7 @@ rpc_bdev_nvme_attach_controller(struct spdk_jsonrpc_request *request, * with past behavior. In the future, this behavior will change to "disable". */ SPDK_ERRLOG("The multipath parameter was not specified to bdev_nvme_attach_controller but " "it was used to add a failover path. This behavior will default to rejecting " - "the request in the future. Specify the 'multipath' parameter to control the behavior"); + "the request in the future. Specify the 'multipath' parameter to control the behavior\n"); ctx->req.multipath = strdup("failover"); if (ctx->req.multipath == NULL) { SPDK_ERRLOG("cannot allocate multipath failover string\n");