summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2022-04-28 09:50:29 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2022-04-28 09:50:29 -0700
commit4a2316a1eda4ef3ced18c7f08f7cb3726bcae44b (patch)
treea9d3c6fc5c9d2ae459332c39fca076d13605a6ed
parent8061e16e203f36e7a5990535760ecb2e60a365f9 (diff)
parent296abc0d91d8b65d42224dd33452ace14491ad08 (diff)
downloadlinux-4a2316a1eda4ef3ced18c7f08f7cb3726bcae44b.tar.bz2
Merge tag 'gfs2-v5.18-rc4-fix2' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2
Pull gfs2 fix from Andreas Gruenbacher: - No short reads or writes upon glock contention * tag 'gfs2-v5.18-rc4-fix2' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2: gfs2: No short reads or writes upon glock contention
-rw-r--r--fs/gfs2/file.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/gfs2/file.c b/fs/gfs2/file.c
index 8d889235afcd..48f01323c37c 100644
--- a/fs/gfs2/file.c
+++ b/fs/gfs2/file.c
@@ -991,8 +991,6 @@ retry_under_glock:
if (leftover != window_size) {
if (gfs2_holder_queued(&gh))
goto retry_under_glock;
- if (written)
- goto out_uninit;
goto retry;
}
}
@@ -1069,8 +1067,6 @@ retry_under_glock:
from->count = min(from->count, window_size - leftover);
if (gfs2_holder_queued(gh))
goto retry_under_glock;
- if (read && !(iocb->ki_flags & IOCB_DIRECT))
- goto out_uninit;
goto retry;
}
}