Received: by 2002:a05:6902:102b:0:0:0:0 with SMTP id x11csp884039ybt; Wed, 8 Jul 2020 14:20:38 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzQS1GSZxULYwuFxYJKlBSrTeL4X3Gc7BrTqRr/6ae+X8SQAZ8tJWP/KnoNkMXP8wRYqeL/ X-Received: by 2002:aa7:c3d8:: with SMTP id l24mr60684034edr.97.1594243237929; Wed, 08 Jul 2020 14:20:37 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1594243237; cv=none; d=google.com; s=arc-20160816; b=foT+DRpcFDE+xSnrscUru7Aoct6kTrHkSN1Z/5EKNcaehZS2wWkwGbQgpvXmZ//lcy 223PRnbwALEiFvfKy9eT5TEzNNifC5z4GdVR2b6VUTDXzJu8O9sKnZLZpc0ByiHLp23/ q6r8xsPTzEdsBLviTFHAIjHDySfoknJoIq7wRYxGj5cqnugO0EfRvHhTALAJ94VF37t1 Mw+cOaiLdfx6uMjQ/4z5xxEjTxv0/Lq/D+byz5XBS4Hi95RcE3MH/1nNrv0yFDrRLNbc fw9WheOvxC+t1ObFtFrHeRqVCQi/His7qQ0nlU10SXNKi92wVMXf/o4Ku30avpuW8Ond AZgw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=Gg/DT8iDIoshWuIiUve770X8H/K0fYMU2qkTcRTG7Y4=; b=umMnWnPMMnD3+Xfu0F/kHztbQ6yG3EyMQT0VS/vbSkwSO9flQmYpgRQSdd+Z9Wk5zi 49hXmDpR4SqC9g0LFweVHJAPm+r27iA67OuJuTc8KfM1blLGkoUfabnP+e02fOroEBaf IljZtfBeRowGEO/vSekm0I7cZmw9BHPHhBIlQFMeBUkvrm+iDPFtbraCZTkIA5zBBgbo S8LT7KVUZoHbqEILcsTvoSS/qKE7L2aJRJI6sQMI8aJq9+QLWuLadTpNyHETP2nZZWc/ DecspFYyJ0gr7fl8Nm3LPeaTZb4Yt9gRK1FqIzhoeYWTt19FWkT0/sPS04nSaKEVHPpH ztcw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id f10si702133edm.214.2020.07.08.14.20.14; Wed, 08 Jul 2020 14:20:37 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726276AbgGHVTv (ORCPT + 99 others); Wed, 8 Jul 2020 17:19:51 -0400 Received: from mx2.suse.de ([195.135.220.15]:35436 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725903AbgGHVTu (ORCPT ); Wed, 8 Jul 2020 17:19:50 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id A659EAC91; Wed, 8 Jul 2020 21:19:49 +0000 (UTC) From: Goldwyn Rodrigues To: linux-btrfs@vger.kernel.org Cc: linux-fsdevel@vger.kernel.org, darrick.wong@oracle.com, hch@lst.de, cluster-devel@redhat.com, linux-ext4@vger.kernel.org, linux-xfs@vger.kernel.org, Goldwyn Rodrigues Subject: [PATCH 2/6] iomap: IOMAP_DIO_RWF_NO_STALE_PAGECACHE return if page invalidation fails Date: Wed, 8 Jul 2020 16:19:22 -0500 Message-Id: <20200708211926.7706-3-rgoldwyn@suse.de> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200708211926.7706-1-rgoldwyn@suse.de> References: <20200708211926.7706-1-rgoldwyn@suse.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org From: Goldwyn Rodrigues For direct I/O, add the flag IOMAP_DIO_RWF_NO_STALE_PAGECACHE to indicate that if the page invalidation fails, return back control to the filesystem so it may fallback to buffered mode. Reviewed-by: Darrick J. Wong Signed-off-by: Goldwyn Rodrigues --- fs/iomap/direct-io.c | 8 +++++++- include/linux/iomap.h | 14 ++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/fs/iomap/direct-io.c b/fs/iomap/direct-io.c index 2753b7022403..66becf935865 100644 --- a/fs/iomap/direct-io.c +++ b/fs/iomap/direct-io.c @@ -484,8 +484,14 @@ iomap_dio_rw(struct kiocb *iocb, struct iov_iter *iter, */ ret = invalidate_inode_pages2_range(mapping, pos >> PAGE_SHIFT, end >> PAGE_SHIFT); - if (ret) + if (ret) { + if (dio_flags & IOMAP_DIO_RWF_NO_STALE_PAGECACHE) { + if (ret == -EBUSY) + ret = 0; + goto out_free_dio; + } dio_warn_stale_pagecache(iocb->ki_filp); + } ret = 0; if (iov_iter_rw(iter) == WRITE && !wait_for_completion && diff --git a/include/linux/iomap.h b/include/linux/iomap.h index 80cd5f524124..a68705369a2c 100644 --- a/include/linux/iomap.h +++ b/include/linux/iomap.h @@ -262,7 +262,21 @@ struct iomap_dio_ops { /* * Wait for completion of DIO */ + #define IOMAP_DIO_RWF_SYNCIO (1 << 0) +/* + * Direct IO will attempt to keep the page cache coherent by + * invalidating the inode's page cache over the range of the DIO. + * That can fail if something else is actively using the page cache. + * If this happens and the DIO continues, the data in the page + * cache will become stale. + * + * Set this flag if you want the DIO to abort without issuing any IO + * or error if it fails to invalidate the page cache successfully. + * This allows the IO submitter to fallback to buffered IO to resubmit + * IO + */ +#define IOMAP_DIO_RWF_NO_STALE_PAGECACHE (1 << 1) ssize_t iomap_dio_rw(struct kiocb *iocb, struct iov_iter *iter, const struct iomap_ops *ops, const struct iomap_dio_ops *dops, -- 2.26.2