Browse Source

package/wprobe: fix kernel 2.6.37 compile issues

SVN-Revision: 24891
Alexandros C. Couloumbis 15 years ago
parent
commit
c78b2dbb89
1 changed files with 4 additions and 1 deletions
  1. 4 1
      package/wprobe/src/kernel/wprobe-core.c

+ 4 - 1
package/wprobe/src/kernel/wprobe-core.c

@@ -31,7 +31,10 @@
 #define static
 
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,28)
-#define list_for_each_rcu __list_for_each_rcu
+#define list_for_each_rcu(pos, head) \
+for (pos = rcu_dereference((head)->next); \
+prefetch(pos->next), pos != (head); \
+pos = rcu_dereference(pos->next))
 #endif
 
 #define WPROBE_MIN_INTERVAL		100 /* minimum measurement interval in msecs */