diff options
| author | Dominique Martinet <[email protected]> | 2024-10-23 23:29:19 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2024-10-24 18:24:05 +0000 |
| commit | f009e946c15540cdff2974771fb979f40b794153 (patch) | |
| tree | 4b521fe63e2f12771b2e43562bb52aead22cb216 | |
| parent | KVM: selftests: Fix build on on non-x86 architectures (diff) | |
| download | kernel-f009e946c15540cdff2974771fb979f40b794153.tar.gz kernel-f009e946c15540cdff2974771fb979f40b794153.zip | |
Revert "9p: Enable multipage folios"
This reverts commit 1325e4a91a405f88f1b18626904d37860a4f9069.
using multipage folios apparently break some madvise operations like
MADV_PAGEOUT which do not reliably unload the specified page anymore,
Revert the patch until that is figured out.
Reported-by: Andrii Nakryiko <[email protected]>
Fixes: 1325e4a91a40 ("9p: Enable multipage folios")
Signed-off-by: Dominique Martinet <[email protected]>
Acked-by: Andrii Nakryiko <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
| -rw-r--r-- | fs/9p/vfs_inode.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c index effb3aa1f3ed..fd72fc38c8f5 100644 --- a/fs/9p/vfs_inode.c +++ b/fs/9p/vfs_inode.c @@ -295,7 +295,6 @@ int v9fs_init_inode(struct v9fs_session_info *v9ses, inode->i_op = &v9fs_file_inode_operations; inode->i_fop = &v9fs_file_operations; } - mapping_set_large_folios(inode->i_mapping); break; case S_IFLNK: |
