Re: [PATCH] Documentation: filesystems: update filesystem locking documentation

2017-07-31 Thread Matthew Wilcox
On Mon, Jul 31, 2017 at 11:53:35AM -0400, Sean Anderson wrote: > - i_mutex(inode) > -lookup: yes > + i_rwsem(inode) > +lookup: shared > create: yes Could you change all the 'yes' to 'exclusive' when it's changed from mutex to rwsem?

[PATCH] Documentation: filesystems: update filesystem locking documentation

2017-07-31 Thread Sean Anderson
Documentation/filesystems/Locking no longer reflects current locking semantics. i_mutex is no longer used for locking, and has been superseded by i_rwsem. Additionally, ->iterate_shared() was not documented. Signed-off-by: Sean Anderson --- Documentation/filesystems/Locking |