* Forwarded: Re: [syzbot] [ntfs3?] WARNING in ntfs_evict_inode
2026-09-17 5:53 [syzbot] [ntfs3?] WARNING in ntfs_evict_inode syzbot
@ 2026-09-20 9:11 ` syzbot
2026-09-20 9:28 ` syzbot
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: syzbot @ 2026-09-20 9:11 UTC (permalink / raw)
To: linux-kernel
For archival purposes, forwarding an incoming command email to
linux-kernel@vger.kernel.org.
***
Subject: Re: [syzbot] [ntfs3?] WARNING in ntfs_evict_inode
Author: adarshdas950@gmail.com
#syz test:
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
diff --git a/fs/ntfs3/frecord.c b/fs/ntfs3/frecord.c
index bead01a953f3..5f833a75a829 100644
--- a/fs/ntfs3/frecord.c
+++ b/fs/ntfs3/frecord.c
@@ -7,6 +7,7 @@
#include <linux/fiemap.h>
#include <linux/fs.h>
+#include <linux/iomap.h>
#include <linux/minmax.h>
#include <linux/vmalloc.h>
@@ -1943,7 +1944,7 @@ int ni_read_folio_cmpr(struct ntfs_inode *ni,
struct folio *folio)
if (vbo >= i_size_read(&ni->vfs_inode)) {
folio_zero_range(folio, 0, folio_size(folio));
- folio_mark_uptodate(folio);
+ iomap_folio_mark_uptodate(folio);
err = 0;
goto out;
}
@@ -2521,7 +2522,8 @@ int ni_read_frame(struct ntfs_inode *ni, u64
frame_vbo, struct page **pages,
out:
for (i = 0; i < pages_per_frame; i++) {
pg = pages[i];
- SetPageUptodate(pg);
+ if (pg)
+ iomap_folio_mark_uptodate(page_folio(pg));
}
return err;
^ permalink raw reply [flat|nested] 6+ messages in thread* Forwarded: Re: [syzbot] [ntfs3?] WARNING in ntfs_evict_inode
2026-09-17 5:53 [syzbot] [ntfs3?] WARNING in ntfs_evict_inode syzbot
2026-09-20 9:11 ` Forwarded: " syzbot
@ 2026-09-20 9:28 ` syzbot
2026-09-20 10:34 ` syzbot
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: syzbot @ 2026-09-20 9:28 UTC (permalink / raw)
To: linux-kernel, syzkaller-bugs
For archival purposes, forwarding an incoming command email to
linux-kernel@vger.kernel.org, syzkaller-bugs@googlegroups.com.
***
Subject: Re: [syzbot] [ntfs3?] WARNING in ntfs_evict_inode
Author: adarshdas950@gmail.com
#syz test: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
diff --git a/fs/ntfs3/frecord.c b/fs/ntfs3/frecord.c
index bead01a953f3..5f833a75a829 100644
--- a/fs/ntfs3/frecord.c
+++ b/fs/ntfs3/frecord.c
@@ -7,6 +7,7 @@
#include <linux/fiemap.h>
#include <linux/fs.h>
+#include <linux/iomap.h>
#include <linux/minmax.h>
#include <linux/vmalloc.h>
@@ -1943,7 +1944,7 @@ int ni_read_folio_cmpr(struct ntfs_inode *ni, struct folio *folio)
if (vbo >= i_size_read(&ni->vfs_inode)) {
folio_zero_range(folio, 0, folio_size(folio));
- folio_mark_uptodate(folio);
+ iomap_folio_mark_uptodate(folio);
err = 0;
goto out;
}
@@ -2521,7 +2522,8 @@ int ni_read_frame(struct ntfs_inode *ni, u64 frame_vbo, struct page **pages,
out:
for (i = 0; i < pages_per_frame; i++) {
pg = pages[i];
- SetPageUptodate(pg);
+ if (pg)
+ iomap_folio_mark_uptodate(page_folio(pg));
}
return err;
^ permalink raw reply [flat|nested] 6+ messages in thread* Forwarded: Re: [syzbot] [ntfs3?] WARNING in ntfs_evict_inode
2026-09-17 5:53 [syzbot] [ntfs3?] WARNING in ntfs_evict_inode syzbot
2026-09-20 9:11 ` Forwarded: " syzbot
2026-09-20 9:28 ` syzbot
@ 2026-09-20 10:34 ` syzbot
2026-09-20 11:01 ` syzbot
2026-09-20 12:52 ` syzbot
4 siblings, 0 replies; 6+ messages in thread
From: syzbot @ 2026-09-20 10:34 UTC (permalink / raw)
To: linux-kernel, syzkaller-bugs
For archival purposes, forwarding an incoming command email to
linux-kernel@vger.kernel.org, syzkaller-bugs@googlegroups.com.
***
Subject: Re: [syzbot] [ntfs3?] WARNING in ntfs_evict_inode
Author: adarshdas950@gmail.com
#syz test: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
diff --git a/fs/ntfs3/inode.c b/fs/ntfs3/inode.c
index 56b4f6469a28..a9b4e288ca20 100644
--- a/fs/ntfs3/inode.c
+++ b/fs/ntfs3/inode.c
@@ -842,7 +842,7 @@ static int ntfs_read_folio(struct file *file, struct folio *folio)
if (ni->i_valid <= vbo) {
folio_zero_range(folio, 0, folio_size(folio));
- folio_mark_uptodate(folio);
+ iomap_folio_mark_uptodate(folio);
folio_unlock(folio);
return 0;
}
^ permalink raw reply [flat|nested] 6+ messages in thread* Forwarded: Re: [syzbot] [ntfs3?] WARNING in ntfs_evict_inode
2026-09-17 5:53 [syzbot] [ntfs3?] WARNING in ntfs_evict_inode syzbot
` (2 preceding siblings ...)
2026-09-20 10:34 ` syzbot
@ 2026-09-20 11:01 ` syzbot
2026-09-20 12:52 ` syzbot
4 siblings, 0 replies; 6+ messages in thread
From: syzbot @ 2026-09-20 11:01 UTC (permalink / raw)
To: linux-kernel, syzkaller-bugs
For archival purposes, forwarding an incoming command email to
linux-kernel@vger.kernel.org, syzkaller-bugs@googlegroups.com.
***
Subject: Re: [syzbot] [ntfs3?] WARNING in ntfs_evict_inode
Author: adarshdas950@gmail.com
#syz test: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 518e5b794c06
diff --git a/fs/ntfs3/inode.c b/fs/ntfs3/inode.c
index 56b4f6469a28..a9b4e288ca20 100644
--- a/fs/ntfs3/inode.c
+++ b/fs/ntfs3/inode.c
@@ -842,7 +842,7 @@ static int ntfs_read_folio(struct file *file, struct folio *folio)
if (ni->i_valid <= vbo) {
folio_zero_range(folio, 0, folio_size(folio));
- folio_mark_uptodate(folio);
+ iomap_folio_mark_uptodate(folio);
folio_unlock(folio);
return 0;
}
^ permalink raw reply [flat|nested] 6+ messages in thread* Forwarded: Re: [syzbot] [ntfs3?] WARNING in ntfs_evict_inode
2026-09-17 5:53 [syzbot] [ntfs3?] WARNING in ntfs_evict_inode syzbot
` (3 preceding siblings ...)
2026-09-20 11:01 ` syzbot
@ 2026-09-20 12:52 ` syzbot
4 siblings, 0 replies; 6+ messages in thread
From: syzbot @ 2026-09-20 12:52 UTC (permalink / raw)
To: linux-kernel, syzkaller-bugs
For archival purposes, forwarding an incoming command email to
linux-kernel@vger.kernel.org, syzkaller-bugs@googlegroups.com.
***
Subject: Re: [syzbot] [ntfs3?] WARNING in ntfs_evict_inode
Author: adarshdas950@gmail.com
#syz test: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 518e5b794c06
diff --git a/fs/ntfs3/inode.c b/fs/ntfs3/inode.c
index 56b4f6469a28..a9b4e288ca20 100644
--- a/fs/ntfs3/inode.c
+++ b/fs/ntfs3/inode.c
@@ -842,7 +842,7 @@ static int ntfs_read_folio(struct file *file, struct folio *folio)
if (ni->i_valid <= vbo) {
folio_zero_range(folio, 0, folio_size(folio));
- folio_mark_uptodate(folio);
+ iomap_folio_mark_uptodate(folio);
folio_unlock(folio);
return 0;
}
^ permalink raw reply [flat|nested] 6+ messages in thread