From: Al Viro Date: Sat, 5 Oct 2013 18:19:39 +0000 (-0400) Subject: no need to keep brlock macros anymore... X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=0f6ed63b170778b9c93fb0ae4017f110c9ee6416;p=deliverable%2Flinux.git no need to keep brlock macros anymore... Signed-off-by: Al Viro --- diff --git a/include/linux/lglock.h b/include/linux/lglock.h index 0d24e932db0b..96549abe8842 100644 --- a/include/linux/lglock.h +++ b/include/linux/lglock.h @@ -25,16 +25,6 @@ #include #include -/* can make br locks by using local lock for read side, global lock for write */ -#define br_lock_init(name) lg_lock_init(name, #name) -#define br_read_lock(name) lg_local_lock(name) -#define br_read_unlock(name) lg_local_unlock(name) -#define br_write_lock(name) lg_global_lock(name) -#define br_write_unlock(name) lg_global_unlock(name) - -#define DEFINE_BRLOCK(name) DEFINE_LGLOCK(name) -#define DEFINE_STATIC_BRLOCK(name) DEFINE_STATIC_LGLOCK(name) - #ifdef CONFIG_DEBUG_LOCK_ALLOC #define LOCKDEP_INIT_MAP lockdep_init_map #else