]> git.openfabrics.org - ~aditr/compat.git/commitdiff
Fix SLES11 SP2 support
authorVladimir Sokolovsky <vlad@mellanox.com>
Mon, 4 Jun 2012 20:17:55 +0000 (23:17 +0300)
committerVladimir Sokolovsky <vlad@mellanox.com>
Mon, 4 Jun 2012 20:17:55 +0000 (23:17 +0300)
Signed-off-by: Vladimir Sokolovsky <vlad@mellanox.com>
compat/Makefile
compat/compat-3.1.c [deleted file]
compat/compat-3.2.c
include/linux/llist.h

index a6bfa2d22cdd84bede3ab943251dcc6b3710b590..0cc0620772535dffbba3de1665b04d68952fa287 100644 (file)
@@ -34,7 +34,7 @@ compat-$(CONFIG_COMPAT_KERNEL_2_6_39) += \
        compat-2.6.39.o \
        kstrtox.o
 compat-$(CONFIG_COMPAT_KERNEL_3_0) += compat-3.0.o
-compat-$(CONFIG_COMPAT_KERNEL_3_1) += compat-3.1.o
+compat-$(CONFIG_COMPAT_KERNEL_3_1) += compat-3.1.o
 compat-$(CONFIG_COMPAT_KERNEL_3_2) += compat-3.2.o
 
 compat-$(CONFIG_COMPAT_CORDIC) += cordic.o
diff --git a/compat/compat-3.1.c b/compat/compat-3.1.c
deleted file mode 100644 (file)
index 5eda45f..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * Lock-less NULL terminated single linked list
- *
- * The basic atomic operation of this list is cmpxchg on long.  On
- * architectures that don't have NMI-safe cmpxchg implementation, the
- * list can NOT be used in NMI handlers.  So code that uses the list in
- * an NMI handler should depend on CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG.
- *
- * Copyright 2010,2011 Intel Corp.
- *   Author: Huang Ying <ying.huang@intel.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License version
- * 2 as published by the Free Software Foundation;
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- */
-#include <linux/kernel.h>
-#include <linux/module.h>
-#include <linux/interrupt.h>
-#include <linux/llist.h>
-
-#include <asm/system.h>
-
-/**
- * llist_del_first - delete the first entry of lock-less list
- * @head:      the head for your lock-less list
- *
- * If list is empty, return NULL, otherwise, return the first entry
- * deleted, this is the newest added one.
- *
- * Only one llist_del_first user can be used simultaneously with
- * multiple llist_add users without lock.  Because otherwise
- * llist_del_first, llist_add, llist_add (or llist_del_all, llist_add,
- * llist_add) sequence in another user may change @head->first->next,
- * but keep @head->first.  If multiple consumers are needed, please
- * use llist_del_all or use lock between consumers.
- */
-struct llist_node *llist_del_first(struct llist_head *head)
-{
-       struct llist_node *entry, *old_entry, *next;
-
-       entry = head->first;
-       for (;;) {
-               if (entry == NULL)
-                       return NULL;
-               old_entry = entry;
-               next = entry->next;
-               entry = cmpxchg(&head->first, old_entry, next);
-               if (entry == old_entry)
-                       break;
-       }
-
-       return entry;
-}
-EXPORT_SYMBOL_GPL(llist_del_first);
index 4569f733e9916608b8cf812babf57fbfb8570a6f..ee3d192ecc43e29db691786da2e119ca266fa1e8 100644 (file)
@@ -50,6 +50,7 @@ int __ethtool_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
 }
 EXPORT_SYMBOL(__ethtool_get_settings);
 
+#ifndef CONFIG_COMPAT_SLES_11_2
 /**
  * llist_add_batch - add several linked entries in batch
  * @new_first: first entry in batch to be added
@@ -76,3 +77,37 @@ bool llist_add_batch(struct llist_node *new_first, struct llist_node *new_last,
 }
 EXPORT_SYMBOL_GPL(llist_add_batch);
 
+/**
+ * llist_del_first - delete the first entry of lock-less list
+ * @head:      the head for your lock-less list
+ *
+ * If list is empty, return NULL, otherwise, return the first entry
+ * deleted, this is the newest added one.
+ *
+ * Only one llist_del_first user can be used simultaneously with
+ * multiple llist_add users without lock.  Because otherwise
+ * llist_del_first, llist_add, llist_add (or llist_del_all, llist_add,
+ * llist_add) sequence in another user may change @head->first->next,
+ * but keep @head->first.  If multiple consumers are needed, please
+ * use llist_del_all or use lock between consumers.
+ */
+struct llist_node *llist_del_first(struct llist_head *head)
+{
+       struct llist_node *entry, *old_entry, *next;
+
+       entry = head->first;
+       for (;;) {
+               if (entry == NULL)
+                       return NULL;
+               old_entry = entry;
+               next = entry->next;
+               entry = cmpxchg(&head->first, old_entry, next);
+               if (entry == old_entry)
+                       break;
+       }
+
+       return entry;
+}
+EXPORT_SYMBOL_GPL(llist_del_first);
+
+#endif /* CONFIG_COMPAT_SLES_11_2 */
index b15d0c7186e4ca70d8810a1c57ece06da8176cfc..a2a3742548e39f1c0fde6187d2aea7864d030836 100644 (file)
@@ -7,6 +7,11 @@
 extern bool llist_add_batch(struct llist_node *new_first,
                            struct llist_node *new_last,
                            struct llist_head *head);
+extern struct llist_node *llist_del_first(struct llist_head *head);
+#else
+
+#ifdef CONFIG_COMPAT_SLES_11_2
+#include_next <linux/llist.h>
 #else
 
 #ifndef LLIST_H
@@ -193,7 +198,9 @@ static inline struct llist_node *llist_del_all(struct llist_head *head)
 extern bool llist_add_batch(struct llist_node *new_first,
                            struct llist_node *new_last,
                            struct llist_head *head);
+
 extern struct llist_node *llist_del_first(struct llist_head *head);
 
+#endif /* CONFIG_COMPAT_SLES_11_2 */
 #endif /* LLIST_H */
 #endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,0) */