From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760240AbZBEAfr (ORCPT ); Wed, 4 Feb 2009 19:35:47 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755405AbZBEAfi (ORCPT ); Wed, 4 Feb 2009 19:35:38 -0500 Received: from smtp1.linux-foundation.org ([140.211.169.13]:56891 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754742AbZBEAfh (ORCPT ); Wed, 4 Feb 2009 19:35:37 -0500 Date: Wed, 4 Feb 2009 16:34:34 -0800 From: Andrew Morton To: Davide Libenzi Cc: mtk.manpages@gmail.com, mtk.manpages@googlemail.com, linux-kernel@vger.kernel.org, torvalds@linux-foundation.org, linux-api@vger.kernel.org Subject: Re: [patch/rfc] eventfd semaphore-like behavior Message-Id: <20090204163434.1395a928.akpm@linux-foundation.org> In-Reply-To: References: <20090204150507.665b5b7c.akpm@linux-foundation.org> <20090204152434.c8f65d52.akpm@linux-foundation.org> <20090204155514.6abbdc8f.akpm@linux-foundation.org> <20090204161816.b93a4588.akpm@linux-foundation.org> X-Mailer: Sylpheed version 2.2.4 (GTK+ 2.8.20; i486-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 4 Feb 2009 16:25:52 -0800 (PST) Davide Libenzi wrote: > On Wed, 4 Feb 2009, Andrew Morton wrote: > > > On Thu, 5 Feb 2009 12:59:07 +1300 > > Michael Kerrisk wrote: > > > > > >> > > > What should be userspace's fallback strategy if that support is not > > > >> > > > present? > > > >> > > > > > >> > > #ifdef EFD_SEMAPHORE, maybe? > > > >> > > > > >> > That's compile-time. People who ship binaries will probably want > > > >> > to find a runtime thing for back-compatibility. > > > >> > > > >> I dunno. How do they actually do when we add new flags, like the O_ ones? > > > >> > > > > > > > > Dunno. Probably try the syscall and see if it returned -EINVAL. Does > > > > that work in this case? > > > > > > As youll have seen by now, Ulrich and I noted that it works. > > > > I think you means "should work" ;) > > > > We're talking about this, yes? > > > > SYSCALL_DEFINE2(eventfd2, unsigned int, count, int, flags) > > { > > int fd; > > struct eventfd_ctx *ctx; > > > > /* Check the EFD_* constants for consistency. */ > > BUILD_BUG_ON(EFD_CLOEXEC != O_CLOEXEC); > > BUILD_BUG_ON(EFD_NONBLOCK != O_NONBLOCK); > > > > if (flags & ~(EFD_CLOEXEC | EFD_NONBLOCK)) > > return -EINVAL; > > > > That looks like it should work to me. > > I lost you guys. On old kernels you'd get -EINVAL when using the new flag. > Wasn't it clear? Or is there some side-band traffic in this conversation > that I missed? :) > Well yes, that. What I was trying to establish here is that we have thought about (and preferably tested) userspace's back-compatibility arrangements. We have now done that.