From mboxrd@z Thu Jan 1 00:00:00 1970 From: Badari Pulavarty Subject: [PATCH 0/3] VFS changes to collapse all the vectored and AIO support Date: Thu, 02 Feb 2006 08:12:38 -0800 Message-ID: <1138896758.28382.112.camel@dyn9047017102.beaverton.ibm.com> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Cc: lkml , linux-fsdevel , pbadari@us.ibm.com Return-path: Received: from e33.co.us.ibm.com ([32.97.110.151]:47797 "EHLO e33.co.us.ibm.com") by vger.kernel.org with ESMTP id S932096AbWBBQLt (ORCPT ); Thu, 2 Feb 2006 11:11:49 -0500 To: christoph , Benjamin LaHaise , Zach Brown Sender: linux-fsdevel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org Hi, This work was originally suggested & started by Christoph Hellwig, when Zack Brown tried to add vectored support for AIO. These series of changes collapses all the vectored IO support into single file-operation method using aio_read/aio_write. Christoph & Zack, comments/suggestions ? If you are happy with the work, can you add your Sign-off or Ack ? Here is the summary: [PATCH 1/3] Vectorize aio_read/aio_write methods [PATCH 2/3] Remove readv/writev methods and use aio_read/aio_write instead. [PATCH 3/3] Zack's core aio changes to support vectored AIO. To Do/Issues: 1) Since aio_read/aio_write are vectorized now, need to modify nfs AIO+DIO and usb/gadget to handle vectors. Is it needed ? For now, it handles only single vector. Christoph, should I loop over all the vectors ? 2) AIO changes need careful review & could be cleaned up further. Zack, can you take a look at those ? 3) Ben's suggestion of kernel iovec to hold precomputed information (like total iolen) instead of computing every time. Thanks, Badari