slub: Remove CONFIG_CMPXCHG_LOCAL ifdeffery
authorChristoph Lameter <cl@linux.com>
Thu, 5 May 2011 20:23:54 +0000 (15:23 -0500)
committerPekka Enberg <penberg@kernel.org>
Sat, 7 May 2011 17:25:38 +0000 (20:25 +0300)
Remove the #ifdefs. This means that the irqsafe_cpu_cmpxchg_double() is used
everywhere.

There may be performance implications since:

A. We now have to manage a transaction ID for all arches

B. The interrupt holdoff for arches not supporting CONFIG_CMPXCHG_LOCAL is reduced
to a very short irqoff section.

There are no multiple irqoff/irqon sequences as a result of this change. Even in the fallback
case we only have to do one disable and enable like before.

Signed-off-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>

No differences found