Prev: [PATCH] gfs2: Fix refcnt leak on gfs2_follow_link() error path
Next: [PATCH 1/7] sysfs: Serialize updates to the vfs inode
From: John Kacur on 11 Jan 2010 15:30 Signed-off-by: John Kacur <jkacur(a)redhat.com> --- include/linux/spinlock.h | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/include/linux/spinlock.h b/include/linux/spinlock.h index 8608821..d2df17b 100644 --- a/include/linux/spinlock.h +++ b/include/linux/spinlock.h @@ -63,14 +63,14 @@ #define LOCK_SECTION_NAME ".text.lock."KBUILD_BASENAME #define LOCK_SECTION_START(extra) \ - ".subsection 1\n\t" \ - extra \ - ".ifndef " LOCK_SECTION_NAME "\n\t" \ - LOCK_SECTION_NAME ":\n\t" \ - ".endif\n" + ".subsection 1\n\t" \ + extra \ + ".ifndef " LOCK_SECTION_NAME "\n\t" \ + LOCK_SECTION_NAME ":\n\t" \ + ".endif\n" #define LOCK_SECTION_END \ - ".previous\n\t" + ".previous\n\t" #define __lockfunc __attribute__((section(".spinlock.text"))) @@ -170,10 +170,10 @@ static inline void do_raw_spin_unlock(raw_spinlock_t *lock) _raw_spin_lock_nested(lock, subclass) # define raw_spin_lock_nest_lock(lock, nest_lock) \ - do { \ - typecheck(struct lockdep_map *, &(nest_lock)->dep_map);\ - _raw_spin_lock_nest_lock(lock, &(nest_lock)->dep_map); \ - } while (0) + do { \ + typecheck(struct lockdep_map *, &(nest_lock)->dep_map);\ + _raw_spin_lock_nest_lock(lock, &(nest_lock)->dep_map); \ + } while (0) #else # define raw_spin_lock_nested(lock, subclass) _raw_spin_lock(lock) # define raw_spin_lock_nest_lock(lock, nest_lock) _raw_spin_lock(lock) -- 1.6.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |