From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS17314 8.43.84.0/22 X-Spam-Status: No, score=-4.6 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,MAILING_LIST_MULTI,NICE_REPLY_A, RCVD_IN_DNSWL_MED,RDNS_DYNAMIC,SPF_HELO_PASS,SPF_PASS, UNPARSEABLE_RELAY shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 15C5D1F8C6 for ; Wed, 15 Sep 2021 15:14:30 +0000 (UTC) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 3F6B5385780A for ; Wed, 15 Sep 2021 15:14:29 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3F6B5385780A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1631718869; bh=5A6b9LvCkexlBluebAg/fCgkX/bdfzSjZaEwbTv5dp4=; h=Date:Subject:To:References:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=GRl9Pd7JQWoC5JJobFTv4wJIC7zLre/2UjIi4KElmR4orT+DQdSnr/QbvFjU3kruF eE3o4b0oWJPtUtnItxMGqpVlO4rR/4ujUa9NqpdFOo97+KPetVfsnDCOYsaV3+ey2x 4hes5cRKkrnTmeMbbD1jtpy+4FLsEfZb1TgFhV4k= Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [IPv6:2a00:1098:0:82:1000:25:2eeb:e3e3]) by sourceware.org (Postfix) with ESMTPS id 2C8A83857802 for ; Wed, 15 Sep 2021 15:14:04 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 2C8A83857802 Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: tonyk) with ESMTPSA id EF2561F417B7 Message-ID: <5f95dfe2-2e46-d4f2-b864-b9e1f6cec1f9@collabora.com> Date: Wed, 15 Sep 2021 12:13:55 -0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.1.0 Subject: Re: [PATCH 00/20] futex: splitup and waitv syscall Content-Language: en-US To: Peter Zijlstra References: <20210915140710.596174479@infradead.org> In-Reply-To: <20210915140710.596174479@infradead.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= Reply-To: =?UTF-8?Q?Andr=c3=a9_Almeida?= Cc: dave@stgolabs.net, libc-alpha@sourceware.org, linux-api@vger.kernel.org, bigeasy@linutronix.de, linux-kernel@vger.kernel.org, rostedt@goodmis.org, mingo@redhat.com, mtk.manpages@gmail.com, dvhart@infradead.org, tglx@linutronix.de, kernel@collabora.com, krisman@collabora.com Errors-To: libc-alpha-bounces+e=80x24.org@sourceware.org Sender: "Libc-alpha" Hi Peter, Às 11:07 de 15/09/21, Peter Zijlstra escreveu: > Hi, > > Neither Thomas nor myself much liked that futex2.c nor do we think that CONFIG_ > symbol makes much sense. > > However, futex.c is a wee bit long and splitting it up makes sense. So I've > taken the liberty to replace your initial patch with 15 of my own and then > rebased the remaining patches on top of that. > Thank you for doing that. futex.c is indeed too big and I believe that this really make the code easier to read, and the way you organized makes more sense than the way I did. Maybe even robust could have a separated file? Thanks, André