From nobody Mon Jun 15 06:31:19 2026 Received: from e3i439.smtp2go.com (e3i439.smtp2go.com [158.120.85.183]) (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 7DCD927A133 for ; Wed, 8 Apr 2026 13:01:01 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=158.120.85.183 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775653263; cv=none; b=L1pAKOwqohQCgwHq2GD9NJMN6l6lVZsnW1Z3x+jr+DC0Lz08tCWSHII1hm5mDEuEAXlCWpZNlFXKrIBBgHNEN5g2iL5iOB8UEPO/F8DLVfBozrpUYxm4FaeIK8t/F3HeFmEizSdbz2yU2/7qivslS3zFe/V0SHuTKQOPxVkZ1wY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775653263; c=relaxed/simple; bh=D+zm6v8383FAhszQpSSS7DNJGLQMSX5OGUm1t2s+bOM=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=d7MnVgXNtsB5wXIuGZJ8ATkis+d/IVKycs9nONkzkaR1V2SppOxfQjIK/5cDWC2Sg2e5miJlDS+t1bZD/kBHD0PaM7Vdc1hsgQiE77jB2RbowM/QylibZnwx3nyaQxOgN4uP7fdFThEJzMDBLQhsFvctmj89iHu/jBm5nhqIFa4= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=asem.it; spf=pass smtp.mailfrom=em1174574.asem.it; dkim=pass (2048-bit key) header.d=asem.it header.i=@asem.it header.b=H4k7Gj1i; arc=none smtp.client-ip=158.120.85.183 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=asem.it Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=em1174574.asem.it Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=asem.it header.i=@asem.it header.b="H4k7Gj1i" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=asem.it; i=@asem.it; q=dns/txt; s=s1174574; t=1775652352; h=from : subject : to : message-id : date; bh=YOO38u7VGuhQaTSS3mjlZHnMtq5PDCORndXhr0qapdA=; b=H4k7Gj1ipxmU9jngLXzbZY0Ch3KAGIvsDqbrp+cdxV2N0KMS1xVXUJWnjFlCMUIuDn2um FsPdmqpoOclTV/WCtC6ioKerMc1WaFGi2NS1TGlfGz5lmKG9AGge39W+7syj0FAXQir2710 PnsfGktBQq+mq0O+6PyDqU+w9Prhw51CL/DX51W9LasG57x3LW/R+36BRB47iTVekg1tIP8 Dz3Dbk3SRTEzaqn9WYDtUJJ1AAwqGhoc+R9G4SCyqWZ22IGMk6zKJROszBYLHgbAVj5z6NU Bk0txkeJNDeKNaCt3eC2vwu6EuGG6nih6FO7Rvo6VDkYX2Zj7yD2dU5WuoCw== Received: from [10.86.249.198] (helo=asas054.asem.intra) by smtpcorp.com with esmtpa (Exim 4.99.1-S2G) (envelope-from ) id 1wASHz-AIkwcC8m8uQ-3JU0 for linux-kernel@vger.kernel.org; Wed, 08 Apr 2026 12:45:48 +0000 Received: from flavio-x.asem.intra ([172.16.23.77]) by asas054.asem.intra with Microsoft SMTPSVC(10.0.14393.4169); Wed, 8 Apr 2026 14:45:44 +0200 From: Flavio Suligoi To: Keith Busch , Jens Axboe , Christoph Hellwig , Sagi Grimberg Cc: linux-nvme@lists.infradead.org, linux-kernel@vger.kernel.org, Flavio Suligoi Subject: [PATCH] nvme-core: fix parameter name in comment Date: Wed, 8 Apr 2026 14:45:22 +0200 Message-ID: <20260408124522.2375297-1-f.suligoi@asem.it> X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-OriginalArrivalTime: 08 Apr 2026 12:45:44.0861 (UTC) FILETIME=[9DD82CD0:01DCC755] X-Report-Abuse: Please forward a copy of this message, including all headers, to Feedback-ID: 1174574m:1174574aXfMg4B:1174574sokn9MPFOK X-smtpcorp-track: Gi8GCT0DYFnB.-kU3CNFFoRex.wzbtoA1_sa4 Content-Type: text/plain; charset="utf-8" In the declaration of the structure "core_quirks[]", in the comment referred to the devices "Kioxia CD6-V Series / HPE PE8030", the parameter "default_ps_max_latency_us" is reported in a wrong way: nvme_core.default_ps_max_latency=3D0 The correct form is, instead: nvme_core.default_ps_max_latency_us=3D0 Signed-off-by: Flavio Suligoi Reviewed-by: Christoph Hellwig --- drivers/nvme/host/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c index 766e9cc4ffca..ac5a7d9781f5 100644 --- a/drivers/nvme/host/core.c +++ b/drivers/nvme/host/core.c @@ -3013,7 +3013,7 @@ static const struct nvme_core_quirk_entry core_quirks= [] =3D { * * The device is left in a state where it is also not possible * to use "nvme set-feature" to disable APST, but booting with - * nvme_core.default_ps_max_latency=3D0 works. + * nvme_core.default_ps_max_latency_us=3D0 works. */ .vid =3D 0x1e0f, .mn =3D "KCD6XVUL6T40", --=20 2.43.0