package/wprobe: fix kernel 2.6.37 compile issues
authorAlexandros C. Couloumbis <alex@ozo.com>
Mon, 3 Jan 2011 16:13:09 +0000 (16:13 +0000)
committerAlexandros C. Couloumbis <alex@ozo.com>
Mon, 3 Jan 2011 16:13:09 +0000 (16:13 +0000)
SVN-Revision: 24891

package/wprobe/src/kernel/wprobe-core.c

index ed224577eec0cbce00f6fe50dc1f61ba2291b55c..68d07172a36a12637a6ba2d3486f1efb79be51b6 100644 (file)
 #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 */