On Thu, Aug 10, 2017 at 10:55:48AM -0700, Darrick J. Wong wrote: > On Thu, Aug 10, 2017 at 10:52:49AM -0400, Brian Foster wrote: > > On Thu, Aug 10, 2017 at 03:09:09PM +0300, Alex Lyakas wrote: ... > > OTOH, just adding deferred ops buffer relogging might not be too much > > trouble either. ;) Anyways, thoughts? > > I don't think it'd be difficult to add a _defer_bjoin operation that > maintains a list of buffers that we need to bhold across rolls. > > I think xfs_buf->b_list is only used for delwri buffers, and a buffer > cannot be part of a transaction /and/ on a delwri list at the same time, > right? So it shouldn't be hard to whip something up and couple this > patch to that. > Hmm.. so if a buffer is modified, logged, committed, put on the AIL and pushed, xfs_buf_item_push() locks it, puts it on the delwri queue and unlocks. At that point, I _think_ it may be possible for another thread to lock the buffer and join it to a new transaction. The delwri submit skips the buffer if it has become pinned or locked since the delwri queue (though I'm wondering if that unlocked pin check is racy against locked buffer modifications. I suppose that would require a full lock->pin->unlock cycle between the pin check and trylock however). All that said, it looks like xfs_defer_ops uses a fixed size array for relogged inodes. Perhaps use something similar for buffers? The question I have for buffer relogging is what's the best way to track the parts of the buffer that need to be relogged after a roll? Copy/translate the dirty (xfs_buf_log_format) segment map(s)? Brian > --D > > > > > Brian > > > > > > > > Cheers, > > > > > > Dave. > > > > > > -- > > > Dave Chinner > > > david@xxxxxxxxxxxxx > > > > > > -- > > > To unsubscribe from this list: send the line "unsubscribe linux-xfs" in > > > the body of a message to majordomo@xxxxxxxxxxxxxxx > > > More majordomo info at http://vger.kernel.org/majordomo-info.html > > -- > > To unsubscribe from this list: send the line "unsubscribe linux-xfs" in > > the body of a message to majordomo@xxxxxxxxxxxxxxx > > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html