Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=MX1sGTd/; dkim=fail reason="signature verification failed" (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=Kad2VUWr Received: by mail.netbsd.org (Postfix, from userid 605) id 835C784E54; Sun, 10 Mar 2024 04:49:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710046164; bh=6upkB5mwq9F3c4s29bJwiniE5QPrxDpAsvI2ps3sr5U=; h=Date:From:Subject:To:List-Id:Reply-To:List-Unsubscribe; b=MX1sGTd/bHGZpp+8xCUvoSMBW3SY5lafs8veH8ZPkERQsUDpegS5AVVRB5DHixOp3 THHuKDBmOjkzZr5lZ3HVrjvX8k1FsTI0i3DwKhMxbiCHqILsIvP46yp8y4a+oEQaDT 6cHXrEse22/Y37kugFO4JwXUeJeD014iTUbq29Ik= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6A06284DBD for ; Sun, 10 Mar 2024 04:49:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id k392qsRH7_1A for ; Sun, 10 Mar 2024 04:49:23 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0635584D29 for ; Sun, 10 Mar 2024 04:49:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710046163; bh=6upkB5mwq9F3c4s29bJwiniE5QPrxDpAsvI2ps3sr5U=; h=Date:From:Subject:To:Reply-To; b=Kad2VUWrPaLBqusVwsfc2pLIyb8N0BiIXwfhF9z0paP4ROjPaM8YCByw8cavtdaoX dTkcUuKsWabuPAL+CtkW5NoIH+xwe8JvGVPVsCF3V0Bke8tPivz+v/oap4eSgFmAsF 1+sRDicpfUwtckQMUWxLI5ewz+ol9DRxWOJu05/E= Received: by cvs.NetBSD.org (Postfix, from userid 500) id EF9F6FA2A; Sun, 10 Mar 2024 04:49:22 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Sun, 10 Mar 2024 04:49:22 +0000 From: "matthew green" Subject: CVS commit: src/sys/dev/ic To: source-changes@NetBSD.org X-Mailer: log_accum Message-Id: <20240310044922.EF9F6FA2A@cvs.NetBSD.org> Sender: source-changes-owner@NetBSD.org List-Id: Precedence: bulk Reply-To: source-changes-d@NetBSD.org Mail-Reply-To: "matthew green" Mail-Followup-To: source-changes-d@NetBSD.org List-Unsubscribe: Module Name: src Committed By: mrg Date: Sun Mar 10 04:49:22 UTC 2024 Modified Files: src/sys/dev/ic: nvme.c Log Message: nvme(4): don't write to INTMC register if in intx mode this matches the handling of INTMS, both of which have the same restrictions on access in MSI-X mode. ideally, this register should be written to with a full set of values for MSI (upto 32 bits), but trying to force MSI mode for my test machine makes the system unstable. tested with samsung SM981 256GB, samsung 980 PRO 1TB, and intel 760p 250G. To generate a diff of this commit: cvs rdiff -u -r1.67 -r1.68 src/sys/dev/ic/nvme.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.