Received: by 2002:a25:c205:0:0:0:0:0 with SMTP id s5csp1061229ybf; Thu, 27 Feb 2020 04:23:14 -0800 (PST) X-Google-Smtp-Source: APXvYqzJCt9DHmI+3eEThRtnrktqcllsuJ9ALfPFnUuJplBjbP20BF6IzU3mz894jcZnNREgy3HU X-Received: by 2002:a9d:7e8c:: with SMTP id m12mr3173273otp.346.1582806194506; Thu, 27 Feb 2020 04:23:14 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1582806194; cv=none; d=google.com; s=arc-20160816; b=bduOl4VMB3dai8wqBAGw60ky7DoohfmPLrs4rBKZrsAjrFaVIOP5U4t21QU4vBh25y y+FbQZ6WcwzH+OqdaL5pfic8Qo3HIt9aEyy+bei4J8NsNkE3xb7ms7Pf8aeZDUP4myT2 3a8Xq3o6Bk8LrujfgNFhtCAcn94Q3rr2ALVkmPLPrNxilhrFKa8DZpur4YQodr/+KPAt Vtt5X/Rqm4FggUpIHLQ7ax56QAz/+hmAcEMnyLZorrlH9SOzjkct+avQ3uMuVuCVojtw XLmOFzsenEcc94TJacwaarGfbueQ9RaNPzTA4gaZP2jus+5NjcVMoy6clY8znwcEs1j8 Tynw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=uYNHfSGnBxtM+4Bt/XqAJBj3M8HS7pi3qAPi5AcGC+k=; b=BuD6OX4GSeKbEAfbZ3ZCmBXekaSxEGeyS2IIn1OzGdEsuFfJL9xRjAUP/KVBhhtRhz Ld6R81T+gW1gvoYF4MvQ+qXulLQhCUmSDmgtgjL/2sfEzSC5Fh70SW3oNcimZ7L9Z5d2 SrIYmPofLyNEYELOq0y3Ro2JQMMilmCvB0yndWT0pLuPoTpVXZfKm9VmE379S17MkQtf z9PyQeNBjZebjQQk+AtKjywpCW9QCG8pmqsxX/yoyQLO3DGQYHx7Rrv9XDmW0A3bs6MW XBYuyBt/srlPFF3un7VX7a8AvDXK3Jarl9hR1tOR2H8YXHXy4gn3xCsQCLaryT653cne 6T5w== 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 w7si1344918otm.256.2020.02.27.04.23.02; Thu, 27 Feb 2020 04:23:14 -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 S1728977AbgB0MVu (ORCPT + 99 others); Thu, 27 Feb 2020 07:21:50 -0500 Received: from youngberry.canonical.com ([91.189.89.112]:56483 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728940AbgB0MVt (ORCPT ); Thu, 27 Feb 2020 07:21:49 -0500 Received: from ip5f5bf7ec.dynamic.kabel-deutschland.de ([95.91.247.236] helo=wittgenstein) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1j7IAm-0004Mu-6u; Thu, 27 Feb 2020 12:21:48 +0000 Date: Thu, 27 Feb 2020 13:21:47 +0100 From: Christian Brauner To: Stafford Horne Cc: LKML , Openrisc , Jonas Bonn , Stefan Kristiansson , Christian Brauner Subject: Re: [PATCH 2/3] openrisc: Enable the clone3 syscall Message-ID: <20200227122147.rnpzcy7rjexgy6yx@wittgenstein> References: <20200226225625.28935-1-shorne@gmail.com> <20200226225625.28935-3-shorne@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20200226225625.28935-3-shorne@gmail.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Feb 27, 2020 at 07:56:24AM +0900, Stafford Horne wrote: > Enable the clone3 syscall for OpenRISC. We use the generic version. > > This was tested with the clone3 test from selftests. Note, for all > tests to pass it required enabling CONFIG_NAMESPACES which is not > enabled in the default kernel config. For OpenRISC, I assume. Hm, maybe we should fix the tests to skip when CONFIG_NAMESPACES is not enabled. > > Signed-off-by: Stafford Horne Acked-by: Christian Brauner