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=-6.9 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE, SPF_PASS,UNPARSEABLE_RELAY,USER_AGENT_SANE_1 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 7EEEEC433EF for ; Wed, 15 Sep 2021 15:14:15 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6BAF461250 for ; Wed, 15 Sep 2021 15:14:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238148AbhIOPPd (ORCPT ); Wed, 15 Sep 2021 11:15:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41850 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238028AbhIOPPY (ORCPT ); Wed, 15 Sep 2021 11:15:24 -0400 Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [IPv6:2a00:1098:0:82:1000:25:2eeb:e3e3]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BAC04C061764; Wed, 15 Sep 2021 08:14:05 -0700 (PDT) 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 Cc: linux-kernel@vger.kernel.org, kernel@collabora.com, krisman@collabora.com, linux-api@vger.kernel.org, mingo@redhat.com, bigeasy@linutronix.de, libc-alpha@sourceware.org, rostedt@goodmis.org, mtk.manpages@gmail.com, dave@stgolabs.net, arnd@arndb.de, tglx@linutronix.de, dvhart@infradead.org References: <20210915140710.596174479@infradead.org> From: =?UTF-8?Q?Andr=c3=a9_Almeida?= In-Reply-To: <20210915140710.596174479@infradead.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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é