Received: by 2002:a25:8b12:0:0:0:0:0 with SMTP id i18csp986146ybl; Wed, 14 Aug 2019 08:59:27 -0700 (PDT) X-Google-Smtp-Source: APXvYqzXC7rfseAVoGy1qM5ARY9if1/bNyQ0TcrOxMuU0rio+TBpXjveHlDST1t+fQkgy9qdMq+J X-Received: by 2002:a63:7709:: with SMTP id s9mr38324058pgc.296.1565798367246; Wed, 14 Aug 2019 08:59:27 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1565798367; cv=none; d=google.com; s=arc-20160816; b=BPuDL1ouoykqvOi7y43RTIA2cpMK8rbsuL9vylB3TlZovi58OIYBLf/UdC79FRipG0 ITghUmqtGJIdkdF2DZhCYBwKn/mMTsXIEgx42DDUhzv8PIzSetUVWMHw5bN459dtRZ1B 0Jd1vzQU/cVMhSRPaOO9uoTXbtfsYI1hynwfQRxsmQ3QjJnhBWaTGyHeem2WxkhI8X8n 3ff4ZopiZU1GSmEVLEwR5qOApllBbtAmqHVgJO9ZSjBLXCStXmdNoIzFn1aSvbTkBMT1 4LzYVcU7oUy/pEeDTtQdWeet5fJw9Xf4w2xKfa5hKynsn7JTqudhIMSIfkmWT0nns1Nn Izow== 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=PV5/3pmczwubdOAjOg+LKwKeLDxsEx//OUIzsvUOJts=; b=M97M83KUW+fNDlcL3RuNqJLBp561EsODDJv8o1JklmIg12AOREjnlCVSPffmKeEPbC zVw+XxlHCyXCmdqqk5C7D2PBKjksSleIORTBLSmM2RlK3KAkr+j/ouVkMIB4ya4wpj21 0tw2TwgvE7/w47ylaDCRTWJrcBLjJjT+QBaK3A4BS9fj/SFSLrMrfr70WaMJRjvNC3Dt M3R8wvS/f1TNumoUfnvRepT4QE2cSrO+FRmo9FKMVpdr9hXShh9vpglb9ISbW8hkLE9R 6pqiUh40OFJlFjg4wADj0zQY4s4D8l19O6R1BDAJ9FRi/n9Xb23gxAGoUG+Msi2BNYhH XdrA== 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 m9si94440pjs.95.2019.08.14.08.59.11; Wed, 14 Aug 2019 08:59:27 -0700 (PDT) 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 S1727791AbfHNP61 (ORCPT + 99 others); Wed, 14 Aug 2019 11:58:27 -0400 Received: from 216-12-86-13.cv.mvl.ntelos.net ([216.12.86.13]:47256 "EHLO brightrain.aerifal.cx" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725828AbfHNP60 (ORCPT ); Wed, 14 Aug 2019 11:58:26 -0400 Received: from dalias by brightrain.aerifal.cx with local (Exim 3.15 #2) id 1hxvfK-0005VF-00; Wed, 14 Aug 2019 15:58:22 +0000 Date: Wed, 14 Aug 2019 11:58:22 -0400 From: Rich Felker To: Christian Brauner Cc: linux-kernel@vger.kernel.org, libc-alpha@sourceware.org, oleg@redhat.com, alistair23@gmail.com, ebiederm@xmission.com, arnd@arndb.de, torvalds@linux-foundation.org, adhemerval.zanella@linaro.org, fweimer@redhat.com, palmer@sifive.com, macro@wdc.com, zongbox@gmail.com, akpm@linux-foundation.org, viro@zeniv.linux.org.uk, hpa@zytor.com Subject: Re: [PATCH v3 0/1] waitid: process group enhancement Message-ID: <20190814155822.GI9017@brightrain.aerifal.cx> References: <20190814154400.6371-1-christian.brauner@ubuntu.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190814154400.6371-1-christian.brauner@ubuntu.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Aug 14, 2019 at 05:43:59PM +0200, Christian Brauner wrote: > Hey everyone, > > This patch adds support for waiting on the current process group by > specifying waitid(P_PGID, 0, ...) as discussed in [1]. The details why > we need to do this are in the commit message of [PATCH 1/1] so I won't > repeat them here. > > I've picked this up since the thread has gone stale and parts of > userspace are actually blocked by this. > > Note that the patch has been changed to be more closely aligned with the > P_PIDFD changes to waitid() I have sitting in my for-next branch (cf. [2]). > This makes the merge conflict a little simpler and picks up on the > coding style discussions that guided the P_PIDFD patchset. > > There was some desire to get this feature in with 5.3 (cf. [3]). > But given that this is a new feature for waitid() and for the sake of > avoiding any merge conflicts I would prefer to land this in the 5.4 > merge window together with the P_PIDFD changes. That makes 5.4 (or later, depending on other stuff) the hard minimum for RV32 ABI. Is that acceptable? I was under the impression (perhaps mistaken) that 5.3 was going to be next LTS series which is why I'd like to have the necessary syscalls for a complete working RV32 userspace in it. If I'm wrong about that please ignore me. :-) Rich