From patchwork Fri Apr 29 20:39:35 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Kani, Toshi" X-Patchwork-Id: 8985461 Return-Path: X-Original-To: patchwork-linux-fsdevel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id D035DBF29F for ; Fri, 29 Apr 2016 20:48:49 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id F35DD20109 for ; Fri, 29 Apr 2016 20:48:48 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0732A201C8 for ; Fri, 29 Apr 2016 20:48:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753116AbcD2Usc (ORCPT ); Fri, 29 Apr 2016 16:48:32 -0400 Received: from g1t5425.austin.hp.com ([15.216.225.55]:40090 "EHLO g1t5425.austin.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753018AbcD2Usa (ORCPT ); Fri, 29 Apr 2016 16:48:30 -0400 Received: from g2t2360.austin.hpecorp.net (g2t2360.austin.hpecorp.net [16.196.225.135]) by g1t5425.austin.hp.com (Postfix) with ESMTP id D801F5B; Fri, 29 Apr 2016 20:48:29 +0000 (UTC) Received: from misato.fc.hp.com (misato.fc.hp.com [16.78.168.61]) by g2t2360.austin.hpecorp.net (Postfix) with ESMTP id 1494E4F; Fri, 29 Apr 2016 20:48:29 +0000 (UTC) From: Toshi Kani To: dan.j.williams@intel.com, david@fromorbit.com, jack@suse.cz Cc: tytso@mit.edu, adilger.kernel@dilger.ca, ross.zwisler@linux.intel.com, toshi.kani@hpe.com, linux-nvdimm@lists.01.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 3/3] xfs: Add alignment check for DAX mount Date: Fri, 29 Apr 2016 14:39:35 -0600 Message-Id: <1461962375-3720-4-git-send-email-toshi.kani@hpe.com> X-Mailer: git-send-email 2.5.5 In-Reply-To: <1461962375-3720-1-git-send-email-toshi.kani@hpe.com> References: <1461962375-3720-1-git-send-email-toshi.kani@hpe.com> Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org X-Spam-Status: No, score=-7.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP When a partition is not aligned by 4KB, mount -o dax succeeds, but any read/write access to the filesystem fails, except for metadata update. Add alignment check to xfs_fs_fill_super() when -o dax is specified. Signed-off-by: Toshi Kani Cc: Dave Chinner (supporter:XFS FILESYSTEM) Cc: Dan Williams Cc: Ross Zwisler --- fs/xfs/xfs_super.c | 5 +++++ 1 file changed, 5 insertions(+) -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index 187e14b..a17aebc 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c @@ -1563,6 +1563,11 @@ xfs_fs_fill_super( xfs_alert(mp, "Filesystem block size invalid for DAX Turning DAX off."); mp->m_flags &= ~XFS_MOUNT_DAX; + } else if (sb->s_bdev->bd_part->start_sect % (PAGE_SIZE / 512) + || sb->s_bdev->bd_part->nr_sects % (PAGE_SIZE / 512)) { + xfs_alert(mp, + "Partition alignment invalid for DAX Turning DAX off."); + mp->m_flags &= ~XFS_MOUNT_DAX; } else if (!sb->s_bdev->bd_disk->fops->direct_access) { xfs_alert(mp, "Block device does not support DAX Turning DAX off.");