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 C95C82E7F3A for ; Sat, 16 Aug 2025 13:20:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755350418; cv=none; b=paxtCL5RAnM01dOMk7z0Ay/VIbvE8I8J674tNvkgZP2OhK5l7wCntqAqqp1JFs8ujgvsW+JCCQ1BMFmj0b7xl7wUIGW4nAnyf0EbrJIg8eik7sjXhVpp/+8XbqQ5zkqb15ks2eNkbFRqjR70y3md8AJjVMAF33nkI6fRKqNoWK4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755350418; c=relaxed/simple; bh=4a4UkLWAzywoDLLPOv9OQ0BJA1ty0NVPTX6oHQuZ0/w=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=DQ526AilnIIquIAd+ETMe/tVU5MJqqvDVVLELsfUVmTTNyfGZstf3v+Aye9gPlURHEl18wlo8DyFnzf9fnpXM99vy6XSPPv81DPCXvl2ZJYyj3JJXJdQPSeBr2dEA0XS8kAS3p4SzceCRR+08TW8JysSedVKIkEZECFoa4bGgg0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=TBbPjok9; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="TBbPjok9" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F00FCC4CEEF; Sat, 16 Aug 2025 13:20:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1755350417; bh=4a4UkLWAzywoDLLPOv9OQ0BJA1ty0NVPTX6oHQuZ0/w=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=TBbPjok9HI/V7jj/NTyLShma030jGXnB0hc5RhIb7tppnfW/Yl/Ln/2omN1T4kezV IYEVJCUHEXzeql3tID96H4hKbsqXUqBAoJ2DkrLFxpyTz4L4xT1mICPbdj2nX7rbdW Y4M17GXRpCElKFVJ42ndQCNXOS1U4ShcM1jcrB9WZbDCq/N3shJvokL1CDN/TqYg5Z wxES7Hi9nXl9+mnCRMG5COrcUnSRmbOSSzumKUvB6e1Wv/GWKINsXWAaxXqYVkzxoy iFHEpknm1i2iPrHlfPn4WzJjhI6vkCVn9yZz1BVjLFiHCqS+3F2RGZyNYhmXSvjNZF xYYKdmumnveFg== Date: Sat, 16 Aug 2025 07:20:15 -0600 From: Keith Busch To: Diederik de Haas Cc: linux-nvme@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [BUG report] kernel warnings with Samsung 970 EVO 2TB SSD Message-ID: References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: On Sat, Aug 16, 2025 at 01:40:44PM +0200, Diederik de Haas wrote: > Hi, > > I have a Samsung 970 EVO 2TB SSD and I see these kernel warnings: ... > I wonder if something can be done to fix those warnings. Are you talking about this message? nvme nvme0: missing or invalid SUBNQN field You can't do anything about it, but I wouldn't worry about it either. If you want to see what the driver is reacting to, you can check the subnqn from command line: # nvme id-ctrl /dev/nvme0 | grep subnqn It'll probably be all zeros. The field has been required by spec, but the driver tolerates ones that don't implement it. It's just a message that the device isn't spec compliant, but otherwise perfectly operational.