From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk1-x732.google.com (mail-qk1-x732.google.com [IPv6:2607:f8b0:4864:20::732]) by sourceware.org (Postfix) with ESMTPS id 8F045388C001 for ; Wed, 2 Jun 2021 14:15:19 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 8F045388C001 Received: by mail-qk1-x732.google.com with SMTP id o27so2443606qkj.9 for ; Wed, 02 Jun 2021 07:15:19 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:cc:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=unCsgpg49UUacpzNrFcD9qQss4cDx6hnNa3dCUSkRgM=; b=IqRzMCeNbeq5LxSGoobbfwapwRMAMypnW6NYvqIQGcueR8LLfeAp5F5HU+ILs5DAEd 6WxZNEpJimB3NaaCBJTjUUwsCf7RUrzi4gdsDGDcvGSX1BtMgJk+akbcGQIBJXjadU6K cW6uLG9U0/QzD2ILnDz1Nyb7STl+CWaZmiKjyZ469BXl8ZlhGdLkosW8B0FGFFx5BCdX iRR51eBUijuLxmpxwnKNHLDhhfIw/AB327aTfzdyMwgfhPZg+4odut84lnpRgpVE9+Tb x+FDt0YJDpC8WEcj93GqDv4wg1iuotYPAeKV8wGPNC/Yvvy5XdwOwEUZql5BSlNYk5JM MuIw== X-Gm-Message-State: AOAM532kKzTAtroRASj0XvvUqP+rjfeAu/J8f2LOddBfiyhJEQpH/OUS Z71O/ZPcUUspnmc6+n0PYwF9cqMSgyoC5w== X-Google-Smtp-Source: ABdhPJxcQ/OiOg87zJ/s1FfWb+UpjhcOt2T0MmL6rx2FvzMuH0TOtLV4i+yT+FurYPraTGwnQcV74w== X-Received: by 2002:a37:a203:: with SMTP id l3mr12559060qke.414.1622643319055; Wed, 02 Jun 2021 07:15:19 -0700 (PDT) Received: from [192.168.1.4] ([177.194.59.218]) by smtp.gmail.com with ESMTPSA id e4sm12321297qtq.5.2021.06.02.07.15.18 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Wed, 02 Jun 2021 07:15:18 -0700 (PDT) Subject: Re: [PATCH v3] nptl: Deallocate the thread stack on setup failure (BZ #19511) To: Andreas Schwab Cc: Adhemerval Zanella via Libc-alpha References: <20210527172823.3461314-3-adhemerval.zanella@linaro.org> <20210602125644.3725112-1-adhemerval.zanella@linaro.org> <87r1hkjtwj.fsf@igel.home> <4e623fa1-419e-5c54-2da3-61a2c3f143ed@linaro.org> <87mts8jsda.fsf@igel.home> <28311d99-55b0-808f-5130-1a9895b9cf77@linaro.org> <87im2wjr6f.fsf@igel.home> From: Adhemerval Zanella Message-ID: Date: Wed, 2 Jun 2021 11:15:16 -0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: <87im2wjr6f.fsf@igel.home> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-6.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org 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: , X-List-Received-Date: Wed, 02 Jun 2021 14:15:29 -0000 On 02/06/2021 11:07, Andreas Schwab wrote: > On Jun 02 2021, Adhemerval Zanella wrote: > >> I don't have a strong preference here, maybe use a 'bool' then? > > bool has architecture dependent size. Fair enough, I will change to: int setup_failed:1; int ununsed_0:31;