On Wed, May 13, 2020 at 01:02:37PM -0400, Brian Foster wrote: > On Tue, May 12, 2020 at 07:28:10PM +1000, Dave Chinner wrote: > > From: Dave Chinner <dchinner@xxxxxxxxxx> > > > > Next on the list to getting rid of the xc_cil_lock is making the CIL > > itself per-cpu. > > > > This requires a trade-off: we no longer move items forward in the > > CIL; once they are on the CIL they remain there as we treat the > > percpu lists as lockless. > > > > XXX: preempt_disable() around the list operations to ensure they > > stay local to the CPU. > > > > XXX: this needs CPU hotplug notifiers to clean up when cpus go > > offline. > > > > Performance now increases substantially - the transaction rate goes > > from 750,000/s to 1.05M/sec, and the unlink rate is over 500,000/s > > for the first time. > > > > Using a 32-way concurrent create/unlink on a 32p/16GB virtual > > machine: > > > > create time rate unlink time > > unpatched 1m56s 533k/s+/-28k/s 2m34s > > patched 1m49s 523k/s+/-14k/s 2m00s > > > > Notably, the system time for the create went up, while variance went > > down. This indicates we're starting to hit some other contention > > limit as we reduce the amount of time we spend contending on the > > xc_cil_lock. > > > > Signed-off-by: Dave Chinner <dchinner@xxxxxxxxxx> > > --- > > fs/xfs/xfs_log_cil.c | 66 ++++++++++++++++++++++++++++--------------- > > fs/xfs/xfs_log_priv.h | 2 +- > > 2 files changed, 45 insertions(+), 23 deletions(-) > > > > diff --git a/fs/xfs/xfs_log_cil.c b/fs/xfs/xfs_log_cil.c > > index 746c841757ed1..af444bc69a7cd 100644 > > --- a/fs/xfs/xfs_log_cil.c > > +++ b/fs/xfs/xfs_log_cil.c > ... > > @@ -687,7 +689,7 @@ xlog_cil_push_work( > > * move on to a new sequence number and so we have to be able to push > > * this sequence again later. > > */ > > - if (list_empty(&cil->xc_cil)) { > > + if (percpu_counter_read(&cil->xc_curr_res) == 0) { > > It seems reasonable, but I need to think a bit more about the whole > percpu list thing. In the meantime, one thing that comes to mind is the > more of these list_empty() -> percpu_counter_read() translations I see > the less I like it because we're leaking this inherent raciness to > different contexts. Whether it's ultimately safe or not, it's subject to > change and far too subtle and indirect for my taste. Well, all the critical list_empty(&cil->xc_cil) checks are done under the xc_push_lock, so I'd suggest that if we zero the counters under the push lock when switching contexts, and put the initial zero->non-zero counter transition to under the same lock we'll get exact checks without requiring a spinlock/atomic in the fast path and have all the right memory barriers in place such that races can't happen... > Could we replace all of the direct ->xc_cil list checks with an atomic > bitop (i.e. XLOG_CIL_EMPTY) or something similar in the xfs_cil? AFAICT, > that could be done in a separate patch and we could ultimately reuse it > to close the race with the initial ctx reservation (via > test_and_set_bit()) because it's otherwise set in the same function. Hm? test_and_set_bit() still locks the memory bus and so requires exclusive access to the cacheline. Avoiding locked bus ops (atomics, spinlocks, etc) in the fast path is the problem I'm trying to solve with this patchset. IOWs, this isn't a viable solution to a scalability problem caused by many CPUs all trying to access the same cacheline exclusively. Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx