]> git.baikalelectronics.ru Git - kernel.git/commit
locking/mutex: Further simplify mutex_spin_on_owner()
authorJason Low <jason.low2@hp.com>
Wed, 8 Apr 2015 19:39:19 +0000 (12:39 -0700)
committerIngo Molnar <mingo@kernel.org>
Thu, 9 Apr 2015 06:10:23 +0000 (08:10 +0200)
commit474d8e8960819ef4ce1db174066b1dfa227c9b4f
tree3acec01dacf54ca648dda938b21fe5a0626f9e5b
parent030036e763a970f9e9ac771550005c5752e0644e
locking/mutex: Further simplify mutex_spin_on_owner()

Similar to what Linus suggested for rwsem_spin_on_owner(), in
mutex_spin_on_owner() instead of having while (true) and
breaking out of the spin loop on lock->owner != owner, we can
have the loop directly check for while (lock->owner == owner) to
improve the readability of the code.

It also shrinks the code a bit:

   text    data     bss     dec     hex filename
   3721       0       0    3721     e89 mutex.o.before
   3705       0       0    3705     e79 mutex.o.after

Signed-off-by: Jason Low <jason.low2@hp.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Aswin Chandramouleeswaran <aswin@hp.com>
Cc: Davidlohr Bueso <dave@stgolabs.net>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Tim Chen <tim.c.chen@linux.intel.com>
Link: http://lkml.kernel.org/r/1428521960-5268-2-git-send-email-jason.low2@hp.com
[ Added code generation info. ]
Signed-off-by: Ingo Molnar <mingo@kernel.org>
kernel/locking/mutex.c