[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <87k122ryx0.fsf@nanos.tec.linutronix.de>
Date: Sun, 26 Apr 2020 18:31:55 +0200
From: Thomas Gleixner <tglx@...utronix.de>
To: Alex Shi <alex.shi@...ux.alibaba.com>
Cc: Davidlohr Bueso <dave@...olabs.net>,
Ingo Molnar <mingo@...hat.com>, Will Deacon <will@...nel.org>,
linux-kernel@...r.kernel.org, Peter Zijlstra <peterz@...radead.org>
Subject: Re: [PATCH 2/2] locking/rtmutex: optimize rt_mutex_cmpxchgs
Alex Shi <alex.shi@...ux.alibaba.com> writes:
> Checking l->owner first to skip time cost cmpxchgs.
I don't see what that buys.
It actually adds an extra conditional in the non-contended case, which
is the case we are optimizing for.
In the contended case, i.e. when l->owner != c the cmpxchg cost is
completely irrelevant compared to the slowpath costs.
> #ifndef CONFIG_DEBUG_RT_MUTEXES
> -# define rt_mutex_cmpxchg_acquire(l,c,n) (cmpxchg_acquire(&l->owner, c, n) == c)
> -# define rt_mutex_cmpxchg_release(l,c,n) (cmpxchg_release(&l->owner, c, n) == c)
> +# define rt_mutex_cmpxchg_acquire(l, c, n) \
> + (l->owner == c && cmpxchg_acquire(&l->owner, c, n) == c)
> +# define rt_mutex_cmpxchg_release(l, c, n) \
> + (l->owner == c && cmpxchg_release(&l->owner, c, n) == c)
This kind of micro-optimizing is more than dubious especially w/o
numbers backing up the benefit.
Thanks,
tglx
Powered by blists - more mailing lists