Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pw70V-0001gH-Ul for pgsql-hackers@arkaria.postgresql.org; Mon, 08 May 2023 19:58:51 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.92) (envelope-from ) id 1pw70U-0003d4-Ss for pgsql-hackers@arkaria.postgresql.org; Mon, 08 May 2023 19:58:50 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pw70U-0003cu-KC for pgsql-hackers@lists.postgresql.org; Mon, 08 May 2023 19:58:50 +0000 Received: from sss.pgh.pa.us ([66.207.139.130]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1pw70S-001QmI-5j for pgsql-hackers@lists.postgresql.org; Mon, 08 May 2023 19:58:50 +0000 Received: from sss1.sss.pgh.pa.us (localhost [127.0.0.1]) by sss.pgh.pa.us (8.15.2/8.15.2) with ESMTP id 348Jwf2m461479; Mon, 8 May 2023 15:58:41 -0400 From: Tom Lane To: Andres Freund cc: Michael Paquier , Niyas Sait , Ian Lawrence Barwick , Thomas Munro , Julien Rouhaud , PostgreSQL Hackers , robhenry@microsoft.com, "Jonathan S. Katz" , Alvaro Herrera , Amit Kapila Subject: Re: [PATCH] Add native windows on arm64 support In-reply-to: <20230508191731.mtt3mpgrr6v2br7t@awork3.anarazel.de> References: <20221205181449.47mhosidtmotemdl@awork3.anarazel.de> <6cfaaf3c-7fb5-51c8-92cf-ceac6303ef66@linaro.org> <20230117225131.jeptl4axjlbk5glz@awork3.anarazel.de> <44f6c1b6-d712-b69b-82f2-8c525f59aeff@linaro.org> <3864856.1683347740@sss.pgh.pa.us> <20230508191731.mtt3mpgrr6v2br7t@awork3.anarazel.de> Comments: In-reply-to Andres Freund message dated "Mon, 08 May 2023 12:17:31 -0700" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <461477.1683575921.1@sss.pgh.pa.us> Content-Transfer-Encoding: quoted-printable Date: Mon, 08 May 2023 15:58:41 -0400 Message-ID: <461478.1683575921@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Andres Freund writes: > I don't really have feelings either way - but haven't we gone further an= d even > backpatched things like spinlock support for new arches in the past? Mmmm ... don't really think those cases were comparable. We weren't adding support for a whole new OS. Now, you might argue that Windows on arm64 will be just like Windows on x86_64, but I think the jury is still out on that. Microsoft was so Intel-only for so many years that I bet they've had to change quite a bit to make it go on ARM. Also, the cases of back-patched spinlock support that I can find in the last few years were pretty low-risk. I'll grant that c32fcac56 was a bit blue-sky because hardly anybody had RISC-V at that point, but by the same token anybody relying on it at the time would be dealing with a beta-grade OS too. On the other hand, 1c72d82c2 was immediately testable in the buildfarm, and f3bd00c01 was importing code already verified by our OpenBSD packagers. As I said upthread, this seems like something to put in at the beginning of a dev cycle, not post-feature-freeze. regards, tom lane