Linux Headquarters
[ Register ]
[ About us ] [ Home Page ]

[ Kernel ] [ Documentation ] [ Links ] [ Books ]

Kernel v2.3.49 /lib/brlock.c

Filename:/lib/brlock.c
Lines Added:65
Lines Deleted:0
Also changed in: (Previous)
(Following) 2.3.99-pre6  2.5.69-bk8  2.5.69-bk9  2.5.69-bk10  2.5.69-bk11  2.5.69-bk12 

Location
[  2.3.49
  [  lib
     o  brlock.c

Patch

diff -u --recursive --new-file v2.3.48/linux/lib/brlock.c linux/lib/brlock.c
--- v2.3.48/linux/lib/brlock.c   Wed Dec 31 16:00:00 1969
+++ linux/lib/brlock.c   Sat Feb 26 22:34:27 2000
@@ -0,0 +1,65 @@
+/*
+ *
+ * linux/lib/brlock.c
+ *
+ * 'Big Reader' read-write spinlocks.  See linux/brlock.h for details.
+ *
+ * Copyright 2000, Ingo Molnar <mingo@redhat.com>
+ * Copyright 2000, David S. Miller <davem@redhat.com>
+ */
+
+#include <linux/config.h>
+
+#ifdef CONFIG_SMP
+
+#include <linux/sched.h>
+#include <linux/brlock.h>
+
+#ifdef __BRLOCK_USE_ATOMICS
+
+brlock_read_lock_t __brlock_array[NR_CPUS][__BR_IDX_MAX] =
+   { [0 ... NR_CPUS-1] = { [0 ... __BR_IDX_MAX-1] = RW_LOCK_UNLOCKED } };
+
+void __br_write_lock (enum brlock_indices idx)
+{
+   int i;
+
+   for (i = 0; i < smp_num_cpus; i++)
+      write_lock(__brlock_array[idx] + i);
+}
+
+void __br_write_unlock (enum brlock_indices idx)
+{
+   int i;
+
+   for (i = 0; i < smp_num_cpus; i++)
+      write_unlock(__brlock_array[idx] + i);
+}
+
+#else /* ! __BRLOCK_USE_ATOMICS */
+
+brlock_read_lock_t __brlock_array[NR_CPUS][__BR_IDX_MAX] =
+   { [0 ... NR_CPUS-1] = { [0 ... __BR_IDX_MAX-1] = 0 } };
+
+struct br_wrlock __br_write_locks[__BR_IDX_MAX] =
+   { [0 ... __BR_IDX_MAX-1] = { SPIN_LOCK_UNLOCKED } };
+
+void __br_write_lock (enum brlock_indices idx)
+{
+   int i;
+
+   spin_lock(&__br_write_locks[idx].lock);
+again:
+   for (i = 0; i < smp_num_cpus; i++)
+      if (__brlock_array[i][idx] != 0)
+         goto again;
+}
+
+void __br_write_unlock (enum brlock_indices idx)
+{
+   spin_unlock(&__br_write_locks[idx].lock);
+}
+
+#endif /* __BRLOCK_USE_ATOMICS */
+
+#endif /* CONFIG_SMP */


Comments: webmaster (at) linuxhq.com.
Advertising: banners (at) linuxhq.com.
Compilation ©1998-2008 Linux Headquarters, Inc.