* [PATCH][PPC32] include/asm-ppc/rwsem.h RWSEM_DEBUG usage
@ 2005-02-01 23:53 Mark A. Greer
0 siblings, 0 replies; only message in thread
From: Mark A. Greer @ 2005-02-01 23:53 UTC (permalink / raw)
To: akpm; +Cc: Linux/PPC Development
[-- Attachment #1: Type: text/plain, Size: 292 bytes --]
include/asm-ppc/rwsem.h has '#ifdef RWSEM_DEBUG' but RWSEM_DEBUG is
always defined (as 0) in include/linux/rwsem.h. The #ifdef's should be
#if's. This also brings the ppc usage in line with the the other
architectures.
Please apply.
Signed-off-by: Mark A. Greer <mgreer@mvista.com>
--
[-- Attachment #2: rwsem.patch --]
[-- Type: text/plain, Size: 740 bytes --]
diff -Nru a/include/asm-ppc/rwsem.h b/include/asm-ppc/rwsem.h
--- a/include/asm-ppc/rwsem.h 2005-02-01 16:46:53 -07:00
+++ b/include/asm-ppc/rwsem.h 2005-02-01 16:46:53 -07:00
@@ -27,7 +27,7 @@
#define RWSEM_ACTIVE_WRITE_BIAS (RWSEM_WAITING_BIAS + RWSEM_ACTIVE_BIAS)
spinlock_t wait_lock;
struct list_head wait_list;
-#ifdef RWSEM_DEBUG
+#if RWSEM_DEBUG
int debug;
#endif
};
@@ -35,7 +35,7 @@
/*
* initialisation
*/
-#ifdef RWSEM_DEBUG
+#if RWSEM_DEBUG
#define __RWSEM_DEBUG_INIT , 0
#else
#define __RWSEM_DEBUG_INIT /* */
@@ -59,7 +59,7 @@
sem->count = RWSEM_UNLOCKED_VALUE;
spin_lock_init(&sem->wait_lock);
INIT_LIST_HEAD(&sem->wait_list);
-#ifdef RWSEM_DEBUG
+#if RWSEM_DEBUG
sem->debug = 0;
#endif
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-02-01 23:53 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-02-01 23:53 [PATCH][PPC32] include/asm-ppc/rwsem.h RWSEM_DEBUG usage Mark A. Greer
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.