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 | 9435ae8d1960821f1b7518396c5e696c7fc8d716 (patch) | |
tree | 6bfb76e373c48ce6a198236f7650e668e5f82196 /target/linux/generic/files/crypto/ocf/ocf-compat.h | |
parent | b90053eadaf302d8a04d892f99f268ff10bd4f1b (diff) | |
download | master-187ad058-9435ae8d1960821f1b7518396c5e696c7fc8d716.tar.gz master-187ad058-9435ae8d1960821f1b7518396c5e696c7fc8d716.tar.bz2 master-187ad058-9435ae8d1960821f1b7518396c5e696c7fc8d716.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.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29818 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 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__ */ /****************************************************************************/ |