From patchwork Thu Aug 24 15:22:05 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 9920455 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id F166360327 for ; Thu, 24 Aug 2017 15:22:19 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E2BE928BA7 for ; Thu, 24 Aug 2017 15:22:19 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id D7A8C28BE8; Thu, 24 Aug 2017 15:22:19 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 86F7D28BA7 for ; Thu, 24 Aug 2017 15:22:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753075AbdHXPWR (ORCPT ); Thu, 24 Aug 2017 11:22:17 -0400 Received: from bombadil.infradead.org ([65.50.211.133]:59840 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753011AbdHXPWR (ORCPT ); Thu, 24 Aug 2017 11:22:17 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=References:In-Reply-To:Message-Id: Date:Subject:Cc:To:From:Sender:Reply-To:MIME-Version:Content-Type: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=0X6UNcwqwnS8YKmBrpx2Nz0EEmk3OJqD5xeKyztrG60=; b=l4Wv1ttjtInyU+83wmqFxPZfk UA2ghE44qHOA5b4JMKEvOPalhK+EmaInqaI+SPcH8gqBOACz9O29ZsqERXtG//MvQ8RaQsnvwhmNN x9XCwTMdixn0BNu6B66QWqCuOq2Eeo3V6VyB7XEyGw5R8UMpkX/1ABt7oAMWNG+Hpep1c3LJpqeDH rSsJL7gemlshFxd74IM1PQLMPCsTFxnPFu6g4ZTJYzNsPl71f2vERIBDR/U0PMh/ACqUL1ylmlZ12 2R5CauJxdRTh9hiH505QbiEbH8WUptJb83ljhbCfNWOWM2SJVSVa/DbrV6QWus+Ch8PlXU4cplGZZ JPargTZIQ==; Received: from 80-109-164-210.cable.dynamic.surfer.at ([80.109.164.210] helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.87 #1 (Red Hat Linux)) id 1dktxY-0003Gj-D4; Thu, 24 Aug 2017 15:22:16 +0000 From: Christoph Hellwig To: Jan Kara Cc: linux-fsdevel@vger.kernel.org, linux-nvdimm@lists.01.org, linux-xfs@vger.kernel.org, Ross Zwisler , Dan Williams Subject: [PATCH 1/3] iomap: return VM_FAULT_* codes from iomap_page_mkwrite Date: Thu, 24 Aug 2017 17:22:05 +0200 Message-Id: <20170824152207.30729-2-hch@lst.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170824152207.30729-1-hch@lst.de> References: <20170824152207.30729-1-hch@lst.de> X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Sender: linux-xfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-xfs@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Christoph Hellwig Reviewed-by: Ross Zwisler --- fs/iomap.c | 4 ++-- fs/xfs/xfs_file.c | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/fs/iomap.c b/fs/iomap.c index 039266128b7f..22ffdfeabeda 100644 --- a/fs/iomap.c +++ b/fs/iomap.c @@ -477,10 +477,10 @@ int iomap_page_mkwrite(struct vm_fault *vmf, const struct iomap_ops *ops) set_page_dirty(page); wait_for_stable_page(page); - return 0; + return VM_FAULT_LOCKED; out_unlock: unlock_page(page); - return ret; + return block_page_mkwrite_return(ret); } EXPORT_SYMBOL_GPL(iomap_page_mkwrite); diff --git a/fs/xfs/xfs_file.c b/fs/xfs/xfs_file.c index afa226b8c290..4213f02325a2 100644 --- a/fs/xfs/xfs_file.c +++ b/fs/xfs/xfs_file.c @@ -1035,7 +1035,6 @@ xfs_filemap_page_mkwrite( ret = dax_iomap_fault(vmf, PE_SIZE_PTE, NULL, &xfs_iomap_ops); } else { ret = iomap_page_mkwrite(vmf, &xfs_iomap_ops); - ret = block_page_mkwrite_return(ret); } xfs_iunlock(XFS_I(inode), XFS_MMAPLOCK_SHARED);