Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966259AbcDLUsN (ORCPT ); Tue, 12 Apr 2016 16:48:13 -0400 Received: from g1t5425.austin.hp.com ([15.216.225.55]:53673 "EHLO g1t5425.austin.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S964798AbcDLUsK (ORCPT ); Tue, 12 Apr 2016 16:48:10 -0400 From: Toshi Kani To: akpm@linux-foundation.org, dan.j.williams@intel.com Cc: linux-nvdimm@ml01.01.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, Toshi Kani , Dave Chinner , Matthew Wilcox , Ross Zwisler , Subject: [PATCH v2 3/5] xfs: call dax_get_unmapped_area() for DAX pmd mappings Date: Tue, 12 Apr 2016 14:39:30 -0600 Message-Id: <1460493572-31667-2-git-send-email-toshi.kani@hpe.com> X-Mailer: git-send-email 2.5.5 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-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 953 Lines: 31 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: Dave Chinner Cc: Dan Williams Cc: Matthew Wilcox Cc: Ross Zwisler Cc: --- fs/xfs/xfs_file.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fs/xfs/xfs_file.c b/fs/xfs/xfs_file.c index 569938a..51c554b 100644 --- a/fs/xfs/xfs_file.c +++ b/fs/xfs/xfs_file.c @@ -1708,6 +1708,9 @@ const struct file_operations xfs_file_operations = { .open = xfs_file_open, .release = xfs_file_release, .fsync = xfs_file_fsync, +#ifdef CONFIG_FS_DAX + .get_unmapped_area = dax_get_unmapped_area, +#endif .fallocate = xfs_file_fallocate, };