From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from verein.lst.de ([213.95.11.211]:53602 "EHLO newverein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752014AbeDFG1C (ORCPT ); Fri, 6 Apr 2018 02:27:02 -0400 Date: Fri, 6 Apr 2018 08:27:00 +0200 From: Christoph Hellwig To: Al Viro Cc: Christoph Hellwig , Avi Kivity , linux-aio@kvack.org, linux-fsdevel@vger.kernel.org, linux-api@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: io_pgetevents & aio fsync V2 Message-ID: <20180406062700.GA20714@lst.de> References: <20180328072639.16885-1-hch@lst.de> <20180406031630.GU30522@ZenIV.linux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180406031630.GU30522@ZenIV.linux.org.uk> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: On Fri, Apr 06, 2018 at 04:16:30AM +0100, Al Viro wrote: > BTW, this is only tangentially related, but... does *anything* call > io_submit() for huge amounts of iocb? Check in do_io_submit() is > insane - "no more than MAX_LONG total of _pointers_". Compat variant > goes for "no more than a page worth of pointers" and there's > a hard limit in ioctx_alloc() - we can't ever get more than > 8M slots in ring buffer... Logical upper bound for io_submit is nr_events passed to io_setup(), which is bound by aio_max_nr. Except that we never actually check against nr_events (or max_reqs as it is known in kernel) in io_submit. Sigh..