diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2022-03-14 20:32:02 +0300 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2022-03-23 18:52:41 +0300 |
commit | 52f3f033a5dbd023307520af1ff551cadfd7f037 (patch) | |
tree | 398a3f660177b830fad71291b7741af7e8cc9a3d /fs/gfs2 | |
parent | bb7f5d96aaa87d5aee2f5eb98ae0b84f08988489 (diff) | |
download | linux-52f3f033a5dbd023307520af1ff551cadfd7f037.tar.xz |
gfs2: Disable page faults during lockless buffered reads
During lockless buffered reads, filemap_read() holds page cache page
references while trying to copy data to the user-space buffer. The
calling process isn't holding the inode glock, but the page references
it holds prevent those pages from being removed from the page cache, and
that prevents the underlying inode glock from being moved to another
node. Thus, we can end up in the same kinds of distributed deadlock
situations as with normal (non-lockless) buffered reads.
Fix that by disabling page faults during lockless reads as well.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/file.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/gfs2/file.c b/fs/gfs2/file.c index 0c8cf10281da..44132e4c8789 100644 --- a/fs/gfs2/file.c +++ b/fs/gfs2/file.c @@ -957,14 +957,16 @@ static ssize_t gfs2_file_read_iter(struct kiocb *iocb, struct iov_iter *to) return ret; iocb->ki_flags &= ~IOCB_DIRECT; } + pagefault_disable(); iocb->ki_flags |= IOCB_NOIO; ret = generic_file_read_iter(iocb, to); iocb->ki_flags &= ~IOCB_NOIO; + pagefault_enable(); if (ret >= 0) { if (!iov_iter_count(to)) return ret; written = ret; - } else { + } else if (ret != -EFAULT) { if (ret != -EAGAIN) return ret; if (iocb->ki_flags & IOCB_NOWAIT) |