From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 731F9C71153 for ; Mon, 28 Aug 2023 21:39:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232971AbjH1Vii (ORCPT ); Mon, 28 Aug 2023 17:38:38 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39330 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231415AbjH1ViO (ORCPT ); Mon, 28 Aug 2023 17:38:14 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D7FBD106 for ; Mon, 28 Aug 2023 14:38:11 -0700 (PDT) From: Thomas Gleixner DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1693258689; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=NnRnRtBVRXEiVd5nK3Y8FaQXhhjR20vw2GnvdfoXL2c=; b=JKP1E5tAJum0l2hu5GwWKLrVriW2x/qNfwVnhLuh30bgsw6q/7NxnQdCvFu4e944faeBLv hGAxTIs6E977vYBRT52A7nvT/5+uq4Lxe/jbsxgoA/5VBrjOKEKN2Lso/CUcLzDvhsia/U QDAQybwjYWOQ5F+B62Pw/Wo5jziqKyvv0bsjOsMIv3BiX80KfgKMPitC27zR9ylF607k2m /bhfwYZDV/4PbhKntwNv/NgpuG2BOHpqXupGTq1QFD6Ixg4gHsFIKUQtA+lq1FjAWkI3Su vGitXIzGqtl1ztS80GbK/8jxKCQo71BF3sGoKhMAmrKRLjNTR+bAREXMSkkM9Q== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1693258689; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=NnRnRtBVRXEiVd5nK3Y8FaQXhhjR20vw2GnvdfoXL2c=; b=EbuxlkdW9Zny7yTPexad/1hjfeiSyMRpGIrK9DDi3BBO4+VTv7wWfbf44X5c0SL3emojb2 ek81bBiy5G4NBbCA== To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, x86@kernel.org Subject: Re: [GIT pull] core/entry for v6.6-rc1 In-Reply-To: References: <169322654636.420889.373907562030292433.tglx@xen13.tec.linutronix.de> Date: Mon, 28 Aug 2023 23:38:08 +0200 Message-ID: <875y4y97b3.ffs@tglx> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Aug 28 2023 at 14:07, Linus Torvalds wrote: > On Mon, 28 Aug 2023 at 06:01, Thomas Gleixner wrote: >> >> A single update to the core entry code, which removes the empty user >> address limit check which is a leftover of the removed TIF_FSCHECK. > > Heh. Lovely. I wonder if we have other cases of #ifdef's that just > aren't #define'd anywhere any more. I'm sure we have. > But I'm too lazy and/or incompetent to write up some trivial script to check. There are a few people out there who are constantly trying to chase those: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git/commit/?h=x86/microcode&id=4d2b748305e96fb76202a0d1072a285b1500bff3 is the most recent example. But obviously they miss stuff too. :) Thanks, tglx