From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from hosted.mailcow.de (hosted.mailcow.de [IPv6:2a00:f820:417::202]) by sourceware.org (Postfix) with ESMTPS id E01143858416 for ; Tue, 28 Feb 2023 23:44:03 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org E01143858416 Authentication-Results: sourceware.org; dmarc=fail (p=reject dis=none) header.from=pearson.onl Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=pearson.onl DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pearson.onl; s=default; t=1677627840; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=VYTIAMkEn4WwejVRZbeLslPriY63+RDNMkIwkN50y+Y=; b=dqj/QpjPq78+9c6dR0gqe46jKtEt6oThdgjfhoSswA1OY848GGyAw/JPelJXVPAbGzG3Q+ aAxhlpsn7ONnDpQb9x6H7eVJ/3/ofnXAndmfGPRltuwOvCTKSFf0OFR6JmFyUhiNL7FUE9 StJ3ewsn4/dBIrGAGJUZCWWBGZlcQQD39YrXuiCs3VR926zuAUGvkRLdstkNRXFvRHMHMp mW/wMVympPczvyLjEljtstUvcRfo9Euut9STyfLka7t23JJZkBTH3SWYYzXUfaVBt3JTes FrJXdxjfRBuhTTkqixTCfdjB4XSvX/yVsHjcux96YnRmEjFLaMon4SfutRxvlw== Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 4D8B45C0569; Wed, 1 Mar 2023 00:43:59 +0100 (CET) Message-ID: <68576ad9-3e29-c609-b9aa-88806152b8a0@pearson.onl> Date: Tue, 28 Feb 2023 15:43:54 -0800 MIME-Version: 1.0 Subject: Re: [PATCH v2] clone.2: note EINVAL when exit_signal + bad flags Content-Language: en-US To: Alex Colomar Cc: linux-man@vger.kernel.org, GNU C Library , Carlos O'Donell References: <20221214212849.17388-1-jack@pearson.onl> <9e2b4a99-7e68-844f-bffb-3c8efcc277fe@pearson.onl> From: Jack Pearson In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_LOW,SPF_HELO_PASS,TXREP,T_SPF_PERMERROR autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Alright, done! Thanks, Jack On 2/24/23 17:04, Alex Colomar wrote: > Hi Jack, > > On 2/22/23 03:28, Jack Pearson wrote: >> Hello, >> >> In this patch, I included my test program for the absence of this behavior with >> normal `clone` per Alex's request: >> >> https://lore.kernel.org/linux-man/fba3de52-91cc-6cbe-b4ae-7140564e9ad2@pearson.onl/T/#mde63a642e9c8d0b4e367b0a2817248e8e0b29a50 >> >> Let me know if there's anything else I should do. > > Could you please resend the patch (keeping all CCs), and I'll have a look at it again? > > Thanks for the ping, > > Alex > >> >> Thanks, >> Jack >> >> On 12/14/22 13:28, Jack Pearson wrote: >>> Document that Linux will report EINVAL when exit_signal is specified and >>> either CLONE_THREAD or CLONE_PARENT is specified. >>> >> ... >