From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from g9t1613g.houston.hp.com ([15.240.0.71]:41198 "EHLO g9t1613g.houston.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S966271AbcDLUsQ (ORCPT ); Tue, 12 Apr 2016 16:48:16 -0400 Received: from g1t5424.austin.hp.com (g1t5424.austin.hp.com [15.216.225.54]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by g9t1613g.houston.hp.com (Postfix) with ESMTPS id CB2256180F for ; Tue, 12 Apr 2016 20:48:15 +0000 (UTC) From: Toshi Kani To: akpm@linux-foundation.org, dan.j.williams@intel.com Cc: linux-nvdimm@lists.01.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, Toshi Kani , Alexander Viro , Matthew Wilcox , Ross Zwisler Subject: [PATCH v2 5/5] block: call dax_get_unmapped_area() for DAX pmd mappings Date: Tue, 12 Apr 2016 14:39:32 -0600 Message-Id: <1460493572-31667-4-git-send-email-toshi.kani@hpe.com> In-Reply-To: <1460493572-31667-1-git-send-email-toshi.kani@hpe.com> References: <1460493572-31667-1-git-send-email-toshi.kani@hpe.com> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: To support DAX pmd mappings with unmodified applications, filesystems need to align an mmap address by the pmd size. Call dax_get_unmapped_area() from f_op->get_unmapped_area. Note, there is no change in behavior for a non-DAX file. Signed-off-by: Toshi Kani Cc: Alexander Viro Cc: Dan Williams Cc: Matthew Wilcox Cc: Ross Zwisler --- fs/block_dev.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fs/block_dev.c b/fs/block_dev.c index 20a2c02..0274802 100644 --- a/fs/block_dev.c +++ b/fs/block_dev.c @@ -1798,6 +1798,9 @@ const struct file_operations def_blk_fops = { .write_iter = blkdev_write_iter, .mmap = blkdev_mmap, .fsync = blkdev_fsync, +#ifdef CONFIG_FS_DAX + .get_unmapped_area = dax_get_unmapped_area, +#endif .unlocked_ioctl = block_ioctl, #ifdef CONFIG_COMPAT .compat_ioctl = compat_blkdev_ioctl,