Getting warnings becuase skb_store_bits has skb as constant, but the function overwrites it. Looks like const was on the wrong side.
Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]> --- include/linux/skbuff.h | 4 ++-- net/core/skbuff.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) --- net-2.6.22.orig/include/linux/skbuff.h +++ net-2.6.22/include/linux/skbuff.h @@ -1491,8 +1491,8 @@ extern __wsum skb_checksum(const int len, __wsum csum); extern int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len); -extern int skb_store_bits(const struct sk_buff *skb, int offset, - void *from, int len); +extern int skb_store_bits(struct sk_buff *skb, int offset, + const void *from, int len); extern __wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset, u8 *to, int len, __wsum csum); --- net-2.6.22.orig/net/core/skbuff.c +++ net-2.6.22/net/core/skbuff.c @@ -1188,7 +1188,7 @@ fault: * traversing fragment lists and such. */ -int skb_store_bits(const struct sk_buff *skb, int offset, void *from, int len) +int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len) { int i, copy; int start = skb_headlen(skb); - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html