Received: by 2002:a25:7ec1:0:0:0:0:0 with SMTP id z184csp3282511ybc; Thu, 14 Nov 2019 06:50:43 -0800 (PST) X-Google-Smtp-Source: APXvYqxr9ji+lMTM32aHoPiZ9T3Qf2aCfYOu7FYfsMRgA/KYJC30fVD7/m24R2TAVtWX4kB/D+sO X-Received: by 2002:a05:6402:1a50:: with SMTP id bf16mr1699952edb.116.1573743043871; Thu, 14 Nov 2019 06:50:43 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1573743043; cv=none; d=google.com; s=arc-20160816; b=DoepZ96Lg7EQykbwrUksy+GviN9w2Y0hkZNJPAcSJo8U5XwyqGiFN5ulkXy/kHnQDe aE0BUdWa3/45wtFyyPbHlb9pLvG6XD3+BRdZZPs3C4SEIgTCRZXlYKGfeMYTDJLKxbam PxECFm/sIzgDj+ew7YfwXe8Qrj4PdABbLITeL2dK+obiqGmJHEqF7Y2t2LpY8WninqbO 6Rmo+5nw6rGuf3T6ntjk0AKNnclUkPIzRL4x4wVVnFGB3trmGqpMmBsY/p0jl9Fq9foH RghU1SoY+qwSvUnTscfj5nCovUkyqWGl7URQ8v5zOFTzEXonPxINUm1AmgHZN70+KU18 4YaA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=WzaOknszrUwaFUsY4KyIyp92k11FLvBs3uKlQ0CEfOA=; b=mGCa/YjhqKsNDwZSBYzNvB/tSseeGTQWclkmREhjYdHqx7lLHRaNpvHkZGoUwVoTH+ Xogq61Dl2z2CR09n6YXCN5ARHhb7ItHVO7Rc49Fkq/8em8mYvLtGPInDZX/N5DWO6n0R iGSl6EzZOBetgs4N1Vf4IEYz955C2/xczau1yLIMZQFJSbi7Q1eH7kAKSzKXCl4RHkuv 8XfdLeV198SRDST4Vks2BGtwoEFL/rOPlpy/khld77UL4ZgWkwZFTi9yflM3hsPgFxtU Is8EFh6S65Z+dwcNstwNAQzj9w2YkU6ri7nZT2acC3v3nfqlPaHgiSWORHBmUFE+5XaS WfpQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id o14si3624786ejx.248.2019.11.14.06.50.19; Thu, 14 Nov 2019 06:50:43 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726881AbfKNOtZ (ORCPT + 99 others); Thu, 14 Nov 2019 09:49:25 -0500 Received: from youngberry.canonical.com ([91.189.89.112]:40109 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726452AbfKNOtZ (ORCPT ); Thu, 14 Nov 2019 09:49:25 -0500 Received: from [213.220.153.21] (helo=wittgenstein) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1iVGQj-00019H-W7; Thu, 14 Nov 2019 14:49:06 +0000 Date: Thu, 14 Nov 2019 15:49:05 +0100 From: Christian Brauner To: Adrian Reber Cc: Eric Biederman , Pavel Emelyanov , Jann Horn , Oleg Nesterov , Dmitry Safonov <0x7f454c46@gmail.com>, Rasmus Villemoes , linux-kernel@vger.kernel.org, Andrei Vagin , Mike Rapoport , Radostin Stoyanov Subject: Re: [PATCH v10 2/2] selftests: add tests for clone3() with *set_tid Message-ID: <20191114144904.cqrun435fkphxk4e@wittgenstein> References: <20191114142707.1608679-1-areber@redhat.com> <20191114142707.1608679-2-areber@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20191114142707.1608679-2-areber@redhat.com> User-Agent: NeoMutt/20180716 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Nov 14, 2019 at 03:27:07PM +0100, Adrian Reber wrote: > This tests clone3() with *set_tid to see if all desired PIDs are working > as expected. The tests are trying multiple invalid input parameters as > well as creating processes while specifying a certain PID in multiple > PID namespaces at the same time. > > Additionally this moves common clone3() test code into clone3_selftests.h. > > Signed-off-by: Adrian Reber Thanks, Adrian! Acked-by: Christian Brauner