Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932303AbcDMTBS (ORCPT ); Wed, 13 Apr 2016 15:01:18 -0400 Received: from g4t3428.houston.hp.com ([15.201.208.56]:10390 "EHLO g4t3428.houston.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932289AbcDMTBR (ORCPT ); Wed, 13 Apr 2016 15:01:17 -0400 X-Greylist: delayed 14260 seconds by postgrey-1.27 at vger.kernel.org; Wed, 13 Apr 2016 15:01:17 EDT Message-ID: <1460573564.24985.60.camel@hpe.com> Subject: Re: [PATCH v2 2/5] ext4: call dax_get_unmapped_area() for DAX pmd mappings From: Toshi Kani To: Matthew Wilcox Cc: akpm@linux-foundation.org, dan.j.williams@intel.com, linux-nvdimm@ml01.01.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, "Theodore Ts'o" , Andreas Dilger , Jan Kara , Ross Zwisler , linux-ext4@vger.kernel.org Date: Wed, 13 Apr 2016 12:52:44 -0600 In-Reply-To: <20160413182249.GB3120@linux.intel.com> References: <1460493572-31667-1-git-send-email-toshi.kani@hpe.com> <20160413030156.GN2781@linux.intel.com> <1460560116.24985.55.camel@hpe.com> <20160413182249.GB3120@linux.intel.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.18.5.2 (3.18.5.2-1.fc23) Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1201 Lines: 39 On Wed, 2016-04-13 at 14:22 -0400, Matthew Wilcox wrote: > On Wed, Apr 13, 2016 at 09:08:36AM -0600, Toshi Kani wrote: > > > > > > > > Could you do something like: > > > > > >  #ifdef CONFIG_FS_DAX > > >  struct page *read_dax_sector(struct block_device *bdev, sector_t n); > > > +unsigned long dax_get_unmapped_area(struct file *filp, unsigned long > > > addr, > > > +               unsigned long len, unsigned long pgoff, unsigned long > > > flags); > > >  #else > > >  static inline struct page *read_dax_sector(struct block_device > > > *bdev, > > >                  sector_t n) > > >  { > > >          return ERR_PTR(-ENXIO); > > >  } > > > +#define dax_get_unmapped_area NULL > > >  #endif > > > > > > in patch 1/5.  Then there's no need for the ifdefs in each > > > filesystem. > > > > I thought about it, but I do not think we can use an inline function to > > an entry point. > > That's not an inline function.  It's just NULL.  So after the > preprocessor is done with it, it just looks like: > > .get_unmapped_area = NULL, > > and it won't be called by get_unmapped_area(). Oh, I see. Good idea. I will do that. Thanks, -Toshi