diff options
Diffstat (limited to 'net/ipv6/ip6_output.c')
| -rw-r--r-- | net/ipv6/ip6_output.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index 4081b12a01ff..77e3f5970ce4 100644 --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c @@ -1450,7 +1450,7 @@ static int __ip6_append_data(struct sock *sk,  			     struct page_frag *pfrag,  			     int getfrag(void *from, char *to, int offset,  					 int len, int odd, struct sk_buff *skb), -			     void *from, int length, int transhdrlen, +			     void *from, size_t length, int transhdrlen,  			     unsigned int flags, struct ipcm6_cookie *ipc6)  {  	struct sk_buff *skb, *skb_prev = NULL; @@ -1798,7 +1798,7 @@ error:  int ip6_append_data(struct sock *sk,  		    int getfrag(void *from, char *to, int offset, int len,  				int odd, struct sk_buff *skb), -		    void *from, int length, int transhdrlen, +		    void *from, size_t length, int transhdrlen,  		    struct ipcm6_cookie *ipc6, struct flowi6 *fl6,  		    struct rt6_info *rt, unsigned int flags)  { @@ -1995,7 +1995,7 @@ EXPORT_SYMBOL_GPL(ip6_flush_pending_frames);  struct sk_buff *ip6_make_skb(struct sock *sk,  			     int getfrag(void *from, char *to, int offset,  					 int len, int odd, struct sk_buff *skb), -			     void *from, int length, int transhdrlen, +			     void *from, size_t length, int transhdrlen,  			     struct ipcm6_cookie *ipc6, struct rt6_info *rt,  			     unsigned int flags, struct inet_cork_full *cork)  {  |