From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 1B89919BC9 for ; Wed, 7 Jun 2023 20:38:51 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 91DF9C433EF; Wed, 7 Jun 2023 20:38:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1686170330; bh=yApZuqIbofxMYM5DrfnV9eiNQQefv/T/16Of+jCksHQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=uEXEwFWiuTHg7sG0nCgpGprBp37CfWxxKSlctK1oY6ykAA4/dyNCndVESXY85lW1h 4Lv7uEQ10QKP/Wy/OrwIOTEDSShix9Uf/xk7CmfxAjbhWmPxqz+I+dZ5qVwtomhN9p mDpJqLTBd5gtuD9OD3e8Tt1hfIL8IQ3ZCSMlVK7M= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Christoph Hellwig , Alan Adamson , Keith Busch , Sasha Levin Subject: [PATCH 6.1 043/225] nvme: fix the name of Zone Append for verbose logging Date: Wed, 7 Jun 2023 22:13:56 +0200 Message-ID: <20230607200915.768032139@linuxfoundation.org> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230607200913.334991024@linuxfoundation.org> References: <20230607200913.334991024@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Christoph Hellwig [ Upstream commit 856303797724d28f1d65b702f0eadcee1ea7abf5 ] No Management involved in Zone Appened. Fixes: bd83fe6f2cd2 ("nvme: add verbose error logging") Signed-off-by: Christoph Hellwig Reviewed-by: Alan Adamson Signed-off-by: Keith Busch Signed-off-by: Sasha Levin --- drivers/nvme/host/constants.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/nvme/host/constants.c b/drivers/nvme/host/constants.c index e958d50155857..5766ceba2fec9 100644 --- a/drivers/nvme/host/constants.c +++ b/drivers/nvme/host/constants.c @@ -21,7 +21,7 @@ static const char * const nvme_ops[] = { [nvme_cmd_resv_release] = "Reservation Release", [nvme_cmd_zone_mgmt_send] = "Zone Management Send", [nvme_cmd_zone_mgmt_recv] = "Zone Management Receive", - [nvme_cmd_zone_append] = "Zone Management Append", + [nvme_cmd_zone_append] = "Zone Append", }; static const char * const nvme_admin_ops[] = { -- 2.39.2