diff options
author | Jonas Gorski <jogo@openwrt.org> | 2012-01-19 19:51:54 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2012-01-19 19:51:54 +0000 |
commit | aa8f9171f2e779040d655db2cf96234b6e98610c (patch) | |
tree | 595553c3edea82a60c729b32416c7ec619258afd /target/linux/generic/files/crypto/ocf/ocf-compat.h | |
parent | 9fd38863652081fd4a31178fdb68e5e2a118eba8 (diff) | |
download | mtk-20170518-aa8f9171f2e779040d655db2cf96234b6e98610c.zip mtk-20170518-aa8f9171f2e779040d655db2cf96234b6e98610c.tar.gz mtk-20170518-aa8f9171f2e779040d655db2cf96234b6e98610c.tar.bz2 |
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.h | 9 |
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 2d98536..b76c369 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__ */ /****************************************************************************/ |