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 CCFD628ED for ; Mon, 12 Dec 2022 13:44:32 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 392E2C433D2; Mon, 12 Dec 2022 13:44:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1670852672; bh=RvlksiBBdM4Tro5ri6e9YVuwe6BKL4MlWoZk8OXhsqI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=fZsJJanPZ5P+Oltd2PAelDSEY9M880CUzWejxxt2FemR5KQ6Xiiiweva8vdDq8kBv GizVxHWkLdzdgOzv8Ld+X0rNQ5ziUXtX/iBCxTXo2lOOpwLCRjBli3RjVKVMj1bPO1 t1vBl6c4lF21K4i9W6l905UffgYonzRjXRKyFB98= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Pankaj Raghav , Christoph Hellwig , Sasha Levin Subject: [PATCH 6.0 129/157] nvme initialize core quirks before calling nvme_init_subsystem Date: Mon, 12 Dec 2022 14:17:57 +0100 Message-Id: <20221212130940.076170193@linuxfoundation.org> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221212130934.337225088@linuxfoundation.org> References: <20221212130934.337225088@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: Pankaj Raghav [ Upstream commit 6f2d71524bcfdeb1fcbd22a4a92a5b7b161ab224 ] A device might have a core quirk for NVME_QUIRK_IGNORE_DEV_SUBNQN (such as Samsung X5) but it would still give a: "missing or invalid SUBNQN field" warning as core quirks are filled after calling nvme_init_subnqn. Fill ctrl->quirks from struct core_quirks before calling nvme_init_subsystem to fix this. Tested on a Samsung X5. Fixes: ab9e00cc72fa ("nvme: track subsystems") Signed-off-by: Pankaj Raghav Signed-off-by: Christoph Hellwig Signed-off-by: Sasha Levin --- drivers/nvme/host/core.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c index f612a0ba64d0..aca50bb93750 100644 --- a/drivers/nvme/host/core.c +++ b/drivers/nvme/host/core.c @@ -3089,10 +3089,6 @@ static int nvme_init_identify(struct nvme_ctrl *ctrl) if (!ctrl->identified) { unsigned int i; - ret = nvme_init_subsystem(ctrl, id); - if (ret) - goto out_free; - /* * Check for quirks. Quirk can depend on firmware version, * so, in principle, the set of quirks present can change @@ -3105,6 +3101,10 @@ static int nvme_init_identify(struct nvme_ctrl *ctrl) if (quirk_matches(id, &core_quirks[i])) ctrl->quirks |= core_quirks[i].quirks; } + + ret = nvme_init_subsystem(ctrl, id); + if (ret) + goto out_free; } memcpy(ctrl->subsys->firmware_rev, id->fr, sizeof(ctrl->subsys->firmware_rev)); -- 2.35.1