patch-2.2.7 linux/include/asm-sparc/softirq.h

Next file: linux/include/asm-sparc/spinlock.h
Previous file: linux/include/asm-sparc/siginfo.h
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.2.6/linux/include/asm-sparc/softirq.h linux/include/asm-sparc/softirq.h
@@ -1,21 +1,23 @@
 /* softirq.h: 32-bit Sparc soft IRQ support.
  *
  * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
- * Copyright (C) 1998 Anton Blanchard (anton@progsoc.uts.edu.au)
+ * Copyright (C) 1998-99 Anton Blanchard (anton@progsoc.uts.edu.au)
  */
 
 #ifndef __SPARC_SOFTIRQ_H
 #define __SPARC_SOFTIRQ_H
 
+#include <linux/tasks.h>	/* For NR_CPUS */
+
 #include <asm/atomic.h>
 #include <asm/smp.h>
 #include <asm/hardirq.h>
 
-extern unsigned int local_bh_count[NR_CPUS];
 
 #define get_active_bhs()	(bh_mask & bh_active)
 
 #ifdef __SMP__
+extern unsigned int local_bh_count[NR_CPUS];
 
 /*
  * The locking mechanism for base handlers, to prevent re-entrancy,
@@ -23,7 +25,7 @@
  * referenced at all outside of this file.
  */
 extern atomic_t global_bh_lock;
-extern atomic_t global_bh_count;
+extern spinlock_t global_bh_count;
 extern spinlock_t sparc_bh_lock;
 
 extern void synchronize_bh(void);
@@ -100,30 +102,31 @@
 /* These are for the IRQs testing the lock */
 static inline int softirq_trylock(int cpu)
 {
-	if (atomic_add_return(1, &global_bh_count) == 1) {
+	if (spin_trylock(&global_bh_count)) {
 		if (atomic_read(&global_bh_lock) == 0) {
 			++local_bh_count[cpu];
 			return 1;
 		}
+		spin_unlock(&global_bh_count);
 	}
-	atomic_dec(&global_bh_count);
 	return 0;
 }
 
 static inline void softirq_endlock(int cpu)
 {
 	local_bh_count[cpu]--;
-	atomic_dec(&global_bh_count);
+	spin_unlock(&global_bh_count);
 }
 
 #else
+extern unsigned int local_bh_count;
 
 #define clear_active_bhs(x)	(bh_active &= ~(x))
 #define mark_bh(nr)		(bh_active |= (1 << (nr)))
 
 /* These are for the irq's testing the lock */
-#define softirq_trylock(cpu)	(local_bh_count[cpu] ? 0 : (local_bh_count[cpu]=1))
-#define softirq_endlock(cpu)	(local_bh_count[cpu] = 0)
+#define softirq_trylock(cpu)	(local_bh_count ? 0 : (local_bh_count=1))
+#define softirq_endlock(cpu)	(local_bh_count = 0)
 #define synchronize_bh()	barrier()
 
 /*
@@ -153,19 +156,20 @@
 extern inline void remove_bh(int nr)
 {
 	bh_mask &= ~(1 << nr);
+	mb();
 	bh_base[nr] = NULL;
 }
 
 extern inline void start_bh_atomic(void)
 {
-	local_bh_count[0]++;
+	local_bh_count++;
 	barrier();
 }
 
 extern inline void end_bh_atomic(void)
 {
 	barrier();
-	local_bh_count[0]--;
+	local_bh_count--;
 }
 
 #endif	/* SMP */

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)