From mboxrd@z Thu Jan 1 00:00:00 1970 From: Josef Bacik Subject: Re: [PATCH 4/4] Btrfs: add basic DIO read/write support V3 Date: Thu, 13 May 2010 14:39:35 -0400 Message-ID: <20100513183935.GI27011@dhcp231-156.rdu.redhat.com> References: <20100512204052.GD3597@localhost.localdomain> <20100513151429.GA16916@infradead.org> <20100513153145.GE27011@dhcp231-156.rdu.redhat.com> <20100513152639.GA30954@infradead.org> <20100513180137.GH27011@dhcp231-156.rdu.redhat.com> <20100513111136.6986e8cc.akpm@linux-foundation.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Josef Bacik , Christoph Hellwig , linux-btrfs@vger.kernel.org, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org To: Andrew Morton Return-path: In-Reply-To: <20100513111136.6986e8cc.akpm@linux-foundation.org> List-ID: On Thu, May 13, 2010 at 11:11:36AM -0700, Andrew Morton wrote: > On Thu, 13 May 2010 14:01:37 -0400 > Josef Bacik wrote: > > > On Thu, May 13, 2010 at 11:26:39AM -0400, Christoph Hellwig wrote: > > > On Thu, May 13, 2010 at 11:31:45AM -0400, Josef Bacik wrote: > > > > AIO's aio_complete does kmap with KM_IRQ0/1 and it gets called in the same > > > > context as the btrfs completion handler, so if it's ok for aio_complete it > > > > should be ok for btrfs right? Thanks, > > > > > > aio_complete does a spin_lock_irqsave before that, which disables > > > interrupts on the local CPU. > > > > > > > Ok how about I just do > > > > local_irq_disable() > > kmap(KM_IRQ0) > > local_irq_enable() > > > > would that be acceptable? Thanks, > > yup. > > local_irq_disable() (or local_irq_save()) > kmap_atomic(KM_IRQx); > > kunmap_atomic(KM_IRQx); > local_irq_enable() (or local_irq_restore()). > > then perhaps flush_dcache_page(). Great, thank you, I will fix this up and resend. Josef