惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
SegmentFault 最新的问题
N
Netflix TechBlog - Medium
Vercel News
Vercel News
F
Fortinet All Blogs
量子位
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
Y
Y Combinator Blog
GbyAI
GbyAI
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
月光博客
月光博客
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
Hugging Face - Blog
Hugging Face - Blog
D
DataBreaches.Net
H
Help Net Security
阮一峰的网络日志
阮一峰的网络日志
D
Docker
WordPress大学
WordPress大学

CachyOS Forum - Latest posts

Ran into a frozen black screen issue with latest update Niri Settings GUI Not Appearing Update to Gnome 50 and I'm getting black/blank screen on NVIDIA with hybrid graphics My JBL Quantum 350 headphones dont play sound 90% of the time on linux while on windows it plays audio 99% of the time Niri/Noctalia Shell notifications Getting a black screen after alt-tabbing too many times Rog-control-center Duplicate keyboard and mouse in system settings? Games running very poorly after first session (semi-solved, still need help though!) Amdgpu random hangs (does cachy perhaps plan to carry patches for this)? A little something. The adj script that replaces GNU fmt for non-ASCII text Mouse scroll wheel issues - ratchet Can't start steam after updates of today (17 April) Balena etcher or ventoy QEMU Bridge setup - Maybe already known but I found it pretty difficult to do and needed much reading Multi-boot install: what do I do about my /boot and /boot/efi partition? Do you collect all the solutions and post them on Wiki or Forum? System update - lts headers invalid or corrupted Sick to death of updates killing my games! I messed up my stuff again and cant download any thing now. error below Got Logitech MX4 with Haptic working in CachyOS Need help with the performance button on my Acer Nitro V16 AI Bailing out, you are at your own Troubles in the Starfield What is so special about the new Linux Kernel 7? "Issue: Display brightness is locked at a low level after waking from sleep on CachyOS (latest update) Balena etcher or ventoy Help with kernel update, emergency mode Issue happening only on wayland Display not recognised - low resolution
Kernel BUG in iomap_write_end() triggered by NTFS3 buffer...
@ThomasCr Th · 2026-04-27 · via CachyOS Forum - Latest posts
Hello, I encountered a reproducible kernel BUG related to buffered writes on an NTFS3 filesystem. The crash occurs inside the generic iomap buffered‑IO path, called from ntfs_file_write_iter() . This appears to be a real kernel‑side logic error rather than a userspace issue. Below is a complete report including system details, stack trace, and reproduction context. System Information Distribution: CachyOS (Arch‑based) Kernel: 7.0.1‑1‑cachyos (PREEMPT) Hardware: MSI MAG X570S Tomahawk Max WiFi (MS‑7D54) BIOS 1.C0 (2025‑09‑03) CPU: AMD Ryzen (8 cores visible in trace) Filesystem involved: ntfs3 Taint flags: G O (NVIDIA out‑of‑tree module loaded) Full system log: https://paste.cachyos.org/81db076.txt Summary of the Issue A kernel BUG is triggered during a buffered write to an NTFS3 filesystem. The BUG originates in: fs/iomap/buffered-io.c:1061 iomap_write_end+0x205/0x210 The write originates from a 32‑bit userspace process ( Comm: CGenericAsyncFi ), likely via int80 syscall emulation (Wine/Proton or similar). This suggests a logic error in the interaction between NTFS3’s write_iter implementation and the generic iomap buffered write path. Kernel Trace (excerpt) kernel BUG at fs/iomap/buffered-io.c:1061! Oops: invalid opcode: 0000 [#1] SMP NOPTI CPU: 8 PID: 33291 Comm: CGenericAsyncFi Tainted: G O 7.0.1-1-cachyos RIP: 0010:iomap_write_end+0x205/0x210 Call Trace: iomap_file_buffered_write+0x283/0x490 ntfs_file_write_iter+0x2b3/0x300 [ntfs3] vfs_write+0x2b6/0x3e0 __ia32_sys_write+0x84/0xf0 do_int80_emulation+0x136/0xa40 The full trace is included in the linked log file. Reproduction Context The crash occurs during writes to an NTFS3‑mounted volume . Triggered by a 32‑bit userspace process performing write operations. The issue appears during buffered I/O , not direct I/O. The crash is fully reproducible on this system. Mount options used for the NTFS3 volume (if relevant) can be provided on request. Expected Behavior The write operation should complete normally without triggering a BUG in the iomap buffered‑IO path. Actual Behavior The kernel hits a BUG() assertion in iomap_write_end() , causing an Oops and stack trace. The system remains running but the process crashes. Additional Notes Although the kernel is tainted due to NVIDIA modules, the crash occurs entirely within the filesystem and iomap code paths. The BUG location strongly suggests a logic error in the iomap end‑write accounting or page state handling triggered by NTFS3’s write_iter implementation. I can test a vanilla kernel or provide additional logs if needed. Please let me know if further debugging information, mount options, or a minimal reproducer would be helpful. I can reproduce the issue reliably and am available to test patches. Thank you.