On Tue, Feb 4, 2025 at 2:22 PM Oleg Nesterov <oleg@xxxxxxxxxx> wrote: > These numbers are visible in fstat() but hopefully nobody uses this > information and file_accessed/file_update_time are not that cheap. I'll note majority of the problem most likely stems from mnt_get_write_access rolling with: preempt_disable(); mnt_inc_writers(mnt); /* * The store to mnt_inc_writers must be visible before we pass * MNT_WRITE_HOLD loop below, so that the slowpath can see our * incremented count after it has set MNT_WRITE_HOLD. */ smp_mb(); Unfortunately as is the MNT_WRITE_HOLD thing gets set under a spinlock, so it may be this will be hard to rework in the same vein in which percpu rwsems are operating, but perhaps someone(tm) may take an honest shot? Would be of benefit everywhere and possibly obsolete this patch. > + if (ret > 0 && !is_pipe_inode(file_inode(filp))) { Total nit in case there is a v2: ret is typically > 0 and most of the time this is going to be an anonymous pipe, so I would swap these conditions around. A not nit is that "is_pipe_inode" is imo misleading -- a named pipe inode is also a pipe inode. How about "is_anon_pipe"? -- Mateusz Guzik <mjguzik gmail.com>