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 X-Spam-Level: X-Spam-Status: No, score=-5.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C5996C432BE for ; Mon, 30 Aug 2021 18:51:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id A354E61008 for ; Mon, 30 Aug 2021 18:51:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232295AbhH3Swd (ORCPT ); Mon, 30 Aug 2021 14:52:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54234 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230301AbhH3Sw3 (ORCPT ); Mon, 30 Aug 2021 14:52:29 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A5C2BC061575 for ; Mon, 30 Aug 2021 11:51:35 -0700 (PDT) From: Thomas Gleixner DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1630349493; 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=39r6jkCo9wse4D+ZKeqS3OGFsifyxRSimJoi7w1hf3s=; b=PRWOPeDBK5MidCh/epBhpwt1N4TP0udPCf5XK8Lb98goIk2SREY79gG/vIH5WejihumrWE m2QsfzDld/A/CNs+RADiJ1qXsiA7kAZnSW/cqd8yryIbBszVk2ENIA6wMURe4HyE+/7vwn xOc/X32qk8urjvavxOFvEsetUy9Pm5K/f4XZMZ+2gZpcnScBTdZ+zATj+BTFfRxqXn6FZP Xusk09ySgTFF+4M0/LghdmnGYCFIORHyDnuQaRIzgL4KNzavKkhSV/DBsF0gJWavXU8OgV Di4taqIW7xrcV6lAOr6wQk/2k5ylojSGXVCkP1Kpto01zaEbqVX2NYszakyRjw== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1630349493; 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=39r6jkCo9wse4D+ZKeqS3OGFsifyxRSimJoi7w1hf3s=; b=YoctAuEO50D2KMAq1gZZnLdKG20Bh49fiuPKVDsOpPBJHZBZX7j+7c5nebx86KGBKD6ihQ d2Rnxe1FKuvcRlDA== To: Linus Torvalds Cc: LKML , the arch/x86 maintainers , Al Viro Subject: Re: [patch 00/10] x86/fpu: Clean up error handling in sigframe related code In-Reply-To: References: <20210830154702.247681585@linutronix.de> Date: Mon, 30 Aug 2021 20:51:32 +0200 Message-ID: <878s0ihikr.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 30 2021 at 10:39, Linus Torvalds wrote: > On Mon, Aug 30, 2021 at 9:27 AM Thomas Gleixner wrote: >> >> The following series cleans this up. As a side effect the resulting text >> size of fpu/signal.o shrinks by about 150 bytes. > > Well, some of the patches in the middle were confusing because of how > 0/ERROR was mixing with a success true/false thing, but the end result > seems to be a whole lot more sensible. Yes, I know. I tried various approaches but they mostly ended up being unreviewable because they changed too many things at once. So at the end I went for this step wise approach which seemed to be manageable at least for my restricted brain capacity. Thanks, tglx