]> git.openfabrics.org - ~aditr/compat.git/commitdiff
compat: backport atomic64 support
authorFelix Fietkau <nbd@openwrt.org>
Fri, 2 Dec 2011 10:28:26 +0000 (11:28 +0100)
committerLuis R. Rodriguez <mcgrof@qca.qualcomm.com>
Fri, 2 Dec 2011 14:42:27 +0000 (09:42 -0500)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
compat/Makefile
compat/compat_atomic.c [new file with mode: 0644]
include/linux/compat-2.6.31.h
include/linux/compat-3.1.h

index fc43ba18e2e1848f2a3795d4419864d14e9a3f00..9e4db44822625b585a65ab4273d82ce922f0d1c8 100644 (file)
@@ -38,3 +38,8 @@ compat-$(CONFIG_COMPAT_KERNEL_3_1) += \
        cordic.o \
        crc8.o
 
+ifndef CONFIG_64BIT
+ifndef CONFIG_GENERIC_ATOMIC64
+  compat-y += compat_atomic.o
+endif
+endif
diff --git a/compat/compat_atomic.c b/compat/compat_atomic.c
new file mode 100644 (file)
index 0000000..747e275
--- /dev/null
@@ -0,0 +1,33 @@
+#include <linux/spinlock.h>
+#include <linux/module.h>
+
+#if !((LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,31)) && (defined(CONFIG_UML) || defined(CONFIG_X86))) && !((LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33)) && defined(CONFIG_ARM) && !defined(CONFIG_GENERIC_ATOMIC64))
+
+static DEFINE_SPINLOCK(lock);
+
+long long atomic64_read(const atomic64_t *v)
+{
+    unsigned long flags;
+    long long val;
+
+    spin_lock_irqsave(&lock, flags);
+    val = v->counter;
+    spin_unlock_irqrestore(&lock, flags);
+    return val;
+}
+EXPORT_SYMBOL(atomic64_read);
+
+long long atomic64_add_return(long long a, atomic64_t *v)
+{
+    unsigned long flags;
+    long long val;
+
+    spin_lock_irqsave(&lock, flags);
+    val = v->counter += a;
+    spin_unlock_irqrestore(&lock, flags);
+    return val;
+}
+EXPORT_SYMBOL(atomic64_add_return);
+
+#endif
+
index ce944bb833d29ec859db3afe305d6c3c907eb7a9..25db973dff99bed4596b9b9e9578f8f9091195e8 100644 (file)
@@ -202,6 +202,20 @@ void compat_synchronize_threaded_irq(struct compat_threaded_irq *comp)
 #define skb_walk_frags(skb, iter)      \
        for (iter = skb_shinfo(skb)->frag_list; iter; iter = iter->next)
 
+#ifndef CONFIG_64BIT
+
+typedef struct {
+       long long counter;
+} atomic64_t;
+
+extern long long atomic64_read(const atomic64_t *v);
+extern long long atomic64_add_return(long long a, atomic64_t *v);
+
+#define atomic64_inc_return(v)          atomic64_add_return(1LL, (v))
+
+#endif
+
+
 #endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,31)) */
 
 #endif /* LINUX_26_31_COMPAT_H */
index e247791a76c84d00ab445e778234da37eb1b1887..0832183cd6a53b3c51901271bddc2d92452ca2ae 100644 (file)
@@ -30,6 +30,18 @@ static inline void security_sk_clone(const struct sock *sk, struct sock *newsk)
 {
 }
 
+/*
+ * In many versions, several architectures do not seem to include an
+ * atomic64_t implementation, and do not include the software emulation from
+ * asm-generic/atomic64_t.
+ * Detect and handle this here.
+ */
+#include <asm/atomic.h>
+
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,31)) && !defined(ATOMIC64_INIT) && !defined(CONFIG_X86) && !((LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33)) && defined(CONFIG_ARM) && !defined(CONFIG_GENERIC_ATOMIC64))
+#include <asm-generic/atomic64.h>
+#endif
+
 #endif /* (LINUX_VERSION_CODE < KERNEL_VERSION(3,1,0)) */
 
 #endif /* LINUX_3_1_COMPAT_H */