From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoph Hellwig Subject: Re: [PATCH 1/2] remove WRITE_ODIRECT_PLUG Date: Fri, 2 Jul 2010 16:16:42 +0200 Message-ID: <20100702141642.GA3763@lst.de> References: <20100623103236.GA11676@lst.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: linux-fsdevel@vger.kernel.org To: axboe@kernel.dk Return-path: Received: from verein.lst.de ([213.95.11.210]:43963 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752165Ab0GBOQo (ORCPT ); Fri, 2 Jul 2010 10:16:44 -0400 Content-Disposition: inline In-Reply-To: <20100623103236.GA11676@lst.de> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: ping? On Wed, Jun 23, 2010 at 12:32:36PM +0200, Christoph Hellwig wrote: > > Instead of keeping a global flag around for one special case user use the > REQ_SYNC flag locally and explain what we're doing in a comment. > > Signed-off-by: Christoph Hellwig > > Index: linux-2.6/fs/direct-io.c > =================================================================== > --- linux-2.6.orig/fs/direct-io.c 2010-06-23 11:48:32.000000000 +0200 > +++ linux-2.6/fs/direct-io.c 2010-06-23 11:48:41.088253790 +0200 > @@ -1152,8 +1152,12 @@ __blockdev_direct_IO_newtrunc(int rw, st > loff_t end = offset; > struct dio *dio; > > + /* > + * We do not want to enable the noidle logic for O_DIRECT I/O, but > + * otherwise treat the I/O as synchronous. > + */ > if (rw & WRITE) > - rw = WRITE_ODIRECT_PLUG; > + rw |= REQ_SYNC; > > if (bdev) > bdev_blkbits = blksize_bits(bdev_logical_block_size(bdev)); > Index: linux-2.6/include/linux/fs.h > =================================================================== > --- linux-2.6.orig/include/linux/fs.h 2010-06-23 11:48:33.000000000 +0200 > +++ linux-2.6/include/linux/fs.h 2010-06-23 11:48:51.460005641 +0200 > @@ -132,7 +132,6 @@ struct inodes_stat_t { > * WRITE_SYNC Like WRITE_SYNC_PLUG, but also unplugs the device > * immediately after submission. The write equivalent > * of READ_SYNC. > - * WRITE_ODIRECT_PLUG Special case write for O_DIRECT only. > * SWRITE_SYNC > * SWRITE_SYNC_PLUG Like WRITE_SYNC/WRITE_SYNC_PLUG, but locks the buffer. > * See SWRITE. > @@ -156,7 +155,6 @@ struct inodes_stat_t { > #define READ_META (READ | REQ_META) > #define WRITE_SYNC_PLUG (WRITE | REQ_SYNC | REQ_NOIDLE) > #define WRITE_SYNC (WRITE | REQ_SYNC | REQ_NOIDLE | REQ_UNPLUG) > -#define WRITE_ODIRECT_PLUG (WRITE | REQ_SYNC) > #define WRITE_META (WRITE | REQ_META) > #define WRITE_BARRIER (WRITE | REQ_SYNC | REQ_NOIDLE | REQ_UNPLUG | \ > REQ_HARDBARRIER) ---end quoted text---