mirror of
https://github.com/szehl/ath9k-hmac.git
synced 2025-03-16 17:15:57 +00:00
55 lines
1.8 KiB
C
Executable File
55 lines
1.8 KiB
C
Executable File
#ifndef __BACKPORT_RCULIST_H
|
|
#define __BACKPORT_RCULIST_H
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,26)
|
|
#include_next <linux/rculist.h>
|
|
#endif
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(3,9,0)
|
|
#include <backport/magic.h>
|
|
#define hlist_for_each_entry_rcu4(tpos, pos, head, member) \
|
|
for (pos = rcu_dereference_raw(hlist_first_rcu(head)); \
|
|
pos && \
|
|
({ tpos = hlist_entry(pos, typeof(*tpos), member); 1; });\
|
|
pos = rcu_dereference_raw(hlist_next_rcu(pos)))
|
|
|
|
#define hlist_for_each_entry_rcu3(pos, head, member) \
|
|
for (pos = hlist_entry_safe (rcu_dereference_raw(hlist_first_rcu(head)),\
|
|
typeof(*(pos)), member); \
|
|
pos; \
|
|
pos = hlist_entry_safe(rcu_dereference_raw(hlist_next_rcu( \
|
|
&(pos)->member)), typeof(*(pos)), member))
|
|
|
|
#undef hlist_for_each_entry_rcu
|
|
#define hlist_for_each_entry_rcu(...) \
|
|
macro_dispatcher(hlist_for_each_entry_rcu, __VA_ARGS__)(__VA_ARGS__)
|
|
#endif /* < 3.9 */
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,37)
|
|
/**
|
|
* backport:
|
|
*
|
|
* commit 67bdbffd696f29a0b68aa8daa285783a06651583
|
|
* Author: Arnd Bergmann <arnd@arndb.de>
|
|
* Date: Thu Feb 25 16:55:13 2010 +0100
|
|
*
|
|
* rculist: avoid __rcu annotations
|
|
*/
|
|
#define hlist_first_rcu(head) (*((struct hlist_node __rcu **)(&(head)->first)))
|
|
#define hlist_next_rcu(node) (*((struct hlist_node __rcu **)(&(node)->next)))
|
|
|
|
#endif /* < 2.6.37 */
|
|
|
|
#ifndef list_for_each_entry_continue_rcu
|
|
#define list_for_each_entry_continue_rcu(pos, head, member) \
|
|
for (pos = list_entry_rcu(pos->member.next, typeof(*pos), member); \
|
|
prefetch(pos->member.next), &pos->member != (head); \
|
|
pos = list_entry_rcu(pos->member.next, typeof(*pos), member))
|
|
#endif
|
|
|
|
#ifndef list_entry_rcu
|
|
#define list_entry_rcu(ptr, type, member) \
|
|
container_of(rcu_dereference(ptr), type, member)
|
|
#endif
|
|
|
|
#endif /* __BACKPORT_RCULIST_H */
|