Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752300AbdFNK4s (ORCPT ); Wed, 14 Jun 2017 06:56:48 -0400 Received: from mx2.suse.de ([195.135.220.15]:53951 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751727AbdFNK4r (ORCPT ); Wed, 14 Jun 2017 06:56:47 -0400 Date: Wed, 14 Jun 2017 12:56:35 +0200 From: Jan Kara To: Dan Williams Cc: linux-nvdimm@lists.01.org, Jan Kara , dm-devel@redhat.com, Matthew Wilcox , x86@kernel.org, linux-kernel@vger.kernel.org, Jeff Moyer , viro@zeniv.linux.org.uk, linux-fsdevel@vger.kernel.org, Ross Zwisler , hch@lst.de Subject: Re: [PATCH v3 06/14] filesystem-dax: convert to dax_flush() Message-ID: <20170614105635.GF21506@quack2.suse.cz> References: <149703982465.20620.14881139332926778446.stgit@dwillia2-desk3.amr.corp.intel.com> <149703985873.20620.14408850278717601623.stgit@dwillia2-desk3.amr.corp.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <149703985873.20620.14408850278717601623.stgit@dwillia2-desk3.amr.corp.intel.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1516 Lines: 45 On Fri 09-06-17 13:24:18, Dan Williams wrote: > Filesystem-DAX flushes caches whenever it writes to the address returned > through dax_direct_access() and when writing back dirty radix entries. > That flushing is only required in the pmem case, so the dax_flush() > helper skips cache management work when the underlying driver does not > specify a flush method. > > We still do all the dirty tracking since the radix entry will already be > there for locking purposes. However, the work to clean the entry will be > a nop for some dax drivers. > > Cc: Jan Kara > Cc: Jeff Moyer > Cc: Christoph Hellwig > Cc: Matthew Wilcox > Cc: Ross Zwisler > Signed-off-by: Dan Williams Looks good to me. You can add: Reviewed-by: Jan Kara Honza > --- > fs/dax.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/fs/dax.c b/fs/dax.c > index b459948de427..0933fc460ada 100644 > --- a/fs/dax.c > +++ b/fs/dax.c > @@ -784,7 +784,7 @@ static int dax_writeback_one(struct block_device *bdev, > } > > dax_mapping_entry_mkclean(mapping, index, pfn_t_to_pfn(pfn)); > - wb_cache_pmem(kaddr, size); > + dax_flush(dax_dev, pgoff, kaddr, size); > /* > * After we have flushed the cache, we can clear the dirty tag. There > * cannot be new dirty data in the pfn after the flush has completed as > -- Jan Kara SUSE Labs, CR