linux/fs/autofs
Al Viro 850d71acd5 autofs: don't bother with atomics for ino->count
All writers are serialized on inode->i_rwsem.  So are the readers
outside of expire.c.  And the readers in expire.c are in the
code that really doesn't care about narrow races - it's looking
for expiry candidates and its callers have to cope with the
possibility of a good candidate becoming busy right under them.

No point bothering with atomic operations - just use int and
mark the non-serialized readers with READ_ONCE().

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
2019-09-17 23:31:27 -04:00
..
autofs_i.h autofs: don't bother with atomics for ino->count 2019-09-17 23:31:27 -04:00
dev-ioctl.c
expire.c autofs: don't bother with atomics for ino->count 2019-09-17 23:31:27 -04:00
init.c
inode.c
Kconfig
Makefile
root.c autofs: don't bother with atomics for ino->count 2019-09-17 23:31:27 -04:00
symlink.c
waitq.c