summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2018-07-23 18:55:55 -0400
committerPaul Gortmaker <paul.gortmaker@windriver.com>2018-07-23 18:55:55 -0400
commite7b8e883d1fb136933aa5e564a33063660904634 (patch)
treec58ae1a1648850c374a8eb8a85727d9acb03b3d3
parentf39848f72c4422f44597d1a2e0caed94a5c49d52 (diff)
downloadlongterm-queue-4.12-e7b8e883d1fb136933aa5e564a33063660904634.tar.gz
xfs: drop patch n/a for 4.12
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
-rw-r--r--queue/series1
-rw-r--r--queue/xfs-return-a-distinct-error-code-value-for-IGET_INCO.patch32
2 files changed, 0 insertions, 33 deletions
diff --git a/queue/series b/queue/series
index 866e272..27fee63 100644
--- a/queue/series
+++ b/queue/series
@@ -80,7 +80,6 @@ platform-x86-hp_accel-Add-quirk-for-HP-ProBook-440-G.patch
nvme-use-kref_get_unless_zero-in-nvme_find_get_ns.patch
l2tp-cleanup-l2tp_tunnel_delete-calls.patch
xfs-fix-log-block-underflow-during-recovery-cycle-ve.patch
-xfs-return-a-distinct-error-code-value-for-IGET_INCO.patch
xfs-fix-incorrect-extent-state-in-xfs_bmap_add_exten.patch
net-dsa-lan9303-Do-not-disable-switch-fabric-port-0-.patch
RDMA-cxgb4-Declare-stag-as-__be32.patch
diff --git a/queue/xfs-return-a-distinct-error-code-value-for-IGET_INCO.patch b/queue/xfs-return-a-distinct-error-code-value-for-IGET_INCO.patch
deleted file mode 100644
index 39c32a4..0000000
--- a/queue/xfs-return-a-distinct-error-code-value-for-IGET_INCO.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From ed438b476b611c67089760037139f93ea8ed41d5 Mon Sep 17 00:00:00 2001
-From: "Darrick J. Wong" <darrick.wong@oracle.com>
-Date: Tue, 17 Oct 2017 21:37:32 -0700
-Subject: [PATCH] xfs: return a distinct error code value for IGET_INCORE cache
- misses
-
-commit ed438b476b611c67089760037139f93ea8ed41d5 upstream.
-
-For an XFS_IGET_INCORE iget operation, if the inode isn't in the cache,
-return ENODATA so that we don't confuse it with the pre-existing ENOENT
-cases (inode is in cache, but freed).
-
-Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
-Reviewed-by: Brian Foster <bfoster@redhat.com>
-Reviewed-by: Dave Chinner <dchinner@redhat.com>
-
-diff --git a/fs/xfs/xfs_icache.c b/fs/xfs/xfs_icache.c
-index 34227115a5d6..43005fbe8b1e 100644
---- a/fs/xfs/xfs_icache.c
-+++ b/fs/xfs/xfs_icache.c
-@@ -610,7 +610,7 @@ xfs_iget(
- } else {
- rcu_read_unlock();
- if (flags & XFS_IGET_INCORE) {
-- error = -ENOENT;
-+ error = -ENODATA;
- goto out_error_or_again;
- }
- XFS_STATS_INC(mp, xs_ig_missed);
---
-2.15.0
-