aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/files/crypto/ocf/ocf-compat.h
diff options
context:
space:
mode:
authorJonas Gorski <jogo@openwrt.org>2012-01-19 19:51:54 +0000
committerJonas Gorski <jogo@openwrt.org>2012-01-19 19:51:54 +0000
commitaa8f9171f2e779040d655db2cf96234b6e98610c (patch)
tree595553c3edea82a60c729b32416c7ec619258afd /target/linux/generic/files/crypto/ocf/ocf-compat.h
parent9fd38863652081fd4a31178fdb68e5e2a118eba8 (diff)
downloadupstream-aa8f9171f2e779040d655db2cf96234b6e98610c.tar.gz
upstream-aa8f9171f2e779040d655db2cf96234b6e98610c.tar.bz2
upstream-aa8f9171f2e779040d655db2cf96234b6e98610c.zip
kernel: fix OCF for linux 3.2
Add skb_frag_page from 3.2 to OCF for 3.1 and earlier and use it. SVN-Revision: 29818
Diffstat (limited to 'target/linux/generic/files/crypto/ocf/ocf-compat.h')
-rw-r--r--target/linux/generic/files/crypto/ocf/ocf-compat.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/target/linux/generic/files/crypto/ocf/ocf-compat.h b/target/linux/generic/files/crypto/ocf/ocf-compat.h
index 2d985360f2..b76c369dd6 100644
--- a/target/linux/generic/files/crypto/ocf/ocf-compat.h
+++ b/target/linux/generic/files/crypto/ocf/ocf-compat.h
@@ -359,6 +359,15 @@ static inline int ocf_run_thread(void *arg)
#include <linux/kthread.h>
#endif
+#include <linux/skbuff.h>
+
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,2,0)
+static inline struct page *skb_frag_page(const skb_frag_t *frag)
+{
+ return frag->page;
+}
+#endif
+
#endif /* __KERNEL__ */
/****************************************************************************/