From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from verein.lst.de ([213.95.11.211]:53329 "EHLO newverein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754569AbeE2GEY (ORCPT ); Tue, 29 May 2018 02:04:24 -0400 Date: Tue, 29 May 2018 08:10:33 +0200 From: Christoph Hellwig To: Al Viro Cc: linux-fsdevel@vger.kernel.org, Christoph Hellwig Subject: Re: [PATCH v2 5/6] aio: fold do_io_submit() into callers Message-ID: <20180529061033.GC31534@lst.de> References: <20180528175430.GC30522@ZenIV.linux.org.uk> <20180528175707.10926-1-viro@ZenIV.linux.org.uk> <20180528175707.10926-5-viro@ZenIV.linux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180528175707.10926-5-viro@ZenIV.linux.org.uk> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: On Mon, May 28, 2018 at 06:57:06PM +0100, Al Viro wrote: > From: Al Viro > > get rid of insane "copy array of 32bit pointers into an array of > native ones" glue. > > Signed-off-by: Al Viro > + if (nr > ctx->nr_events) > + nr = ctx->nr_events; Shouldn't this be in the next patch? Except for that: Reviewed-by: Christoph Hellwig