diff options
author | Andi Kleen <ak@linux.intel.com> | 2012-03-16 12:00:57 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-03-16 14:47:41 -0700 |
commit | bc01caf53da4de53361376734707336de8fff839 (patch) | |
tree | 408addf95b02ccfa53c7221df9310837ea0f94db | |
parent | 40ec6c542121ef85f5ba2e7d75968806009dcaf7 (diff) |
staging/zmem: Use lockdep_assert_held instead of spin_is_lockedstaging-3.3
WARN_ON(!spin_is_locked()) will always trigger on UP.
Use lockdep_assert_held instead.
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/zcache/tmem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/zcache/tmem.h b/drivers/staging/zcache/tmem.h index ed147c4b110d..0d4aa82706b3 100644 --- a/drivers/staging/zcache/tmem.h +++ b/drivers/staging/zcache/tmem.h @@ -47,7 +47,7 @@ #define ASSERT_INVERTED_SENTINEL(_x, _y) do { } while (0) #endif -#define ASSERT_SPINLOCK(_l) WARN_ON(!spin_is_locked(_l)) +#define ASSERT_SPINLOCK(_l) lockdep_assert_held(_l) /* * A pool is the highest-level data structure managed by tmem and |