diff options
Diffstat (limited to 'net/ipv6/raw.c')
| -rw-r--r-- | net/ipv6/raw.c | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/net/ipv6/raw.c b/net/ipv6/raw.c index 3aee12310d9..34cfb3f41c2 100644 --- a/net/ipv6/raw.c +++ b/net/ipv6/raw.c @@ -7,8 +7,6 @@   *   *	Adapted from linux/net/ipv4/raw.c   * - *	$Id: raw.c,v 1.51 2002/02/01 22:01:04 davem Exp $ - *   *	Fixes:   *	Hideaki YOSHIFUJI	:	sin6_scope_id support   *	YOSHIFUJI,H.@USAGI	:	raw checksum (RFC2292(bis) compliance) @@ -1164,13 +1162,13 @@ static void rawv6_close(struct sock *sk, long timeout)  	sk_common_release(sk);  } -static int raw6_destroy(struct sock *sk) +static void raw6_destroy(struct sock *sk)  {  	lock_sock(sk);  	ip6_flush_pending_frames(sk);  	release_sock(sk); -	return inet6_destroy_sock(sk); +	inet6_destroy_sock(sk);  }  static int rawv6_init_sk(struct sock *sk) @@ -1253,7 +1251,7 @@ static int raw6_seq_show(struct seq_file *seq, void *v)  			   "local_address                         "  			   "remote_address                        "  			   "st tx_queue rx_queue tr tm->when retrnsmt" -			   "   uid  timeout inode  drops\n"); +			   "   uid  timeout inode ref pointer drops\n");  	else  		raw6_sock_seq_show(seq, v, raw_seq_private(seq)->bucket);  	return 0;  |