mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-25 01:17:55 +02:00
package/wprobe: fix kernel 2.6.37 compile issues
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24891 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
a8fe248bf8
commit
25b18586e6
@ -31,7 +31,10 @@
|
|||||||
#define static
|
#define static
|
||||||
|
|
||||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,28)
|
#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
|
#endif
|
||||||
|
|
||||||
#define WPROBE_MIN_INTERVAL 100 /* minimum measurement interval in msecs */
|
#define WPROBE_MIN_INTERVAL 100 /* minimum measurement interval in msecs */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user