Received: by 2002:a05:6a10:d5a5:0:0:0:0 with SMTP id gn37csp3369704pxb; Mon, 4 Oct 2021 00:21:54 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzmd1ewchnW6bopeo5enaObx5IubHipe0j2ri5MFmL4G0EbqJ50o4QYsUpkBB/pyQr6hkCY X-Received: by 2002:a17:903:32ce:b0:13e:2245:6fc8 with SMTP id i14-20020a17090332ce00b0013e22456fc8mr21719548plr.67.1633332114777; Mon, 04 Oct 2021 00:21:54 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1633332114; cv=none; d=google.com; s=arc-20160816; b=dsK1HXK5t1udz/1q9FS+IvjXp+/00xgVsD5WBDh88sQrhJp40tNroSdKU8kQtBDnkF IgFBBqY+OyvCeYqcZpuuhw53vhRh7YKziamZv+dYUHfLJDE20iWenpOiwRRLl5nqTE0q EucY11ZsIfQe0z+DOSiWDnWuCWlt0LLDIEusZrTxJ4jpxvRy2zSY++E2K8TFe+N2Acf7 PKvbRJYYQdedRjt6GWJjPG+ibPKDxO7vHcqv24L/GnyTiU8/V7u3Ik2kyFtWnQYLRX33 h9bC5LhgNbRpyeSGl25o6hypiLLEBg5fJfgqauUwW/4yYAZ5Ltp0K4nhQLWhSJRIOjoe 9UIg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=D3thjRGNcGt6oZS2bk/Yj25MDrRVVkqfkjWI2H454Kw=; b=dpzubBsxO4+6MsY8l9Lyjm8WS3yyGlguxdS9jBgJKshyz0a/iXb4B317GplQTwQeyw nFSdzCrrZQlUS4AfDtIDYsUpeV3pFMe7IEJCaTnIYyRT+MX97FHwWu1fDBQH7mbOz8HU HvYS/kcL8MJGjLshnwyG6W/wVqbnKl2FLV3xyZ2nrnQhQq/mwCdHIU0ZyQPZ6mw3wLJr uAnupfoUxuSdX0yusrSIuChvEW48BzUmk7lRNaqFLygv0uj1od7IltRkk+ghQYpTpJog EoaVJ8KwzCJtz5iQkNjtm+/qptApxTlcBmzllHJEUMp4gHeFwaoALEFlD+JHdZ5xjNIF U5QA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id w8si6883759plz.396.2021.10.04.00.21.41; Mon, 04 Oct 2021 00:21:54 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229779AbhJDHRa (ORCPT + 99 others); Mon, 4 Oct 2021 03:17:30 -0400 Received: from mail.kernel.org ([198.145.29.99]:44494 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229720AbhJDHR3 (ORCPT ); Mon, 4 Oct 2021 03:17:29 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id D3683610E6; Mon, 4 Oct 2021 07:15:38 +0000 (UTC) Date: Mon, 4 Oct 2021 09:15:36 +0200 From: Christian Brauner To: Palmer Dabbelt Cc: linux-riscv@lists.infradead.org, Arnd Bergmann , Paul Walmsley , aou@eecs.berkeley.edu, christian@brauner.io, linux-kernel@vger.kernel.org, kernel-team@android.com, Palmer Dabbelt Subject: Re: [PATCH] RISC-V: Include clone3() on rv32 Message-ID: <20211004071536.hloqmba6y4cw3hli@wittgenstein> References: <20211003002120.198752-1-palmer@dabbelt.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20211003002120.198752-1-palmer@dabbelt.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Oct 02, 2021 at 05:21:20PM -0700, Palmer Dabbelt wrote: > From: Palmer Dabbelt > > As far as I can tell this should be enabled on rv32 as well, I'm not > sure why it's rv64-only. checksyscalls is complaining about our lack of > clone3() on rv32. > > Fixes: 56ac5e213933 ("riscv: enable sys_clone3 syscall for rv64") > Signed-off-by: Palmer Dabbelt > --- Thanks! Acked-by: Christian Brauner