On Tue, Oct 01, 2019 at 12:40:53AM -0700, Harshad Shirwadkar wrote: > This patch adds new helper APIs that ext4 needs for fast > commits. These new fast commit APIs are used by subsequent fast commit > patches to implement fast commits. Following new APIs are added: > > /* > * Returns when either a full commit or a fast commit > * completes > */ > int jbd2_fc_complete_commit(journal_tc *journal, tid_t tid, > tid_t subtid) > > /* Send all the data buffers related to an inode */ > int journal_submit_inode_data(journal_t *journal, > struct jbd2_inode *jinode) > > /* Map one fast commit buffer for use by the file system */ > int jbd2_map_fc_buf(journal_t *journal, struct buffer_head **bh_out) > > /* Wait on fast commit buffers to complete IO */ > jbd2_wait_on_fc_bufs(journal_t *journal, int num_bufs) > > /* > * Returns 1 if transaction identified by tid:subtid is already > * committed. > */ > int jbd2_commit_check(journal_t *journal, tid_t tid, tid_t subtid) Please move these commits into the code, before each function. This documentation is going to be useful long after the patch gets merged, and people will be looking for them in the source code, and not necessarily in the commit description. > > diff --git a/fs/jbd2/commit.c b/fs/jbd2/commit.c > index 7db3e2b6336d..e85f51e1cc70 100644 > --- a/fs/jbd2/commit.c > +++ b/fs/jbd2/commit.c > @@ -202,6 +202,38 @@ static int journal_submit_inode_data_buffers(struct address_space *mapping, > return ret; > } > > +int jbd2_submit_inode_data(journal_t *journal, struct jbd2_inode *jinode) This code was pulled out of journal_submit_data_buffers(), but given how it was called, there were locking assumptions that were broken as a result. > +{ > + struct address_space *mapping; > + loff_t dirty_start = jinode->i_dirty_start; > + loff_t dirty_end = jinode->i_dirty_end; > + int ret; > + > + if (!jinode) > + return 0; > + > + if (!(jinode->i_flags & JI_WRITE_DATA)) > + return 0; Originally in journal_submit_data_buffers() we were holding onto j_list_lock, and that's needed to safely reference jinode->i_flags > + > + dirty_start = jinode->i_dirty_start; > + dirty_end = jinode->i_dirty_end; > + > + mapping = jinode->i_vfs_inode->i_mapping; > + jinode->i_flags |= JI_COMMIT_RUNNING; Originally there was a spin_uinlock(&journal->j_list_lock) here. And that's important since there was a memory barrier there which we needed in order to make sure other CPU's would see the JI_COMMIT_RUNNING flag. It's not clear we need to worry about this, if this is only going to be used in the async fast commit context. This is another example of how trying to do the fast commit in the userspace (or nfs server's) process context is much simpler, since the the JI_COMMIT_RUNNING flag is needed to make sure there isn't a race with the inode getting evicted and jbd2_journal_release_jbd_inode. And if we're calling this function from ext4_jbd2.c, where the inode's ref count is elevated and there is no risk of the inode getting evicted from memory, then this particular race is not a problem, and so messing with JI_COMMIT_RUNNING and the call to wake_up_bit is all not necessary. By the way, this function only submits the data to be written out. It does not wait for the writeout to be completed. For that, you need the equivalent of journal_finish_inode_data_buffers(), and I don't see that equivalent functionality in the fast commit code path? - Ted