diff options
Diffstat (limited to 'include/net/sctp/structs.h')
| -rw-r--r-- | include/net/sctp/structs.h | 18 | 
1 files changed, 4 insertions, 14 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h index fb42c90348d3..b33f1aefad09 100644 --- a/include/net/sctp/structs.h +++ b/include/net/sctp/structs.h @@ -431,23 +431,13 @@ struct sctp_af {  	int		(*setsockopt)	(struct sock *sk,  					 int level,  					 int optname, -					 char __user *optval, +					 sockptr_t optval,  					 unsigned int optlen);  	int		(*getsockopt)	(struct sock *sk,  					 int level,  					 int optname,  					 char __user *optval,  					 int __user *optlen); -	int		(*compat_setsockopt)	(struct sock *sk, -					 int level, -					 int optname, -					 char __user *optval, -					 unsigned int optlen); -	int		(*compat_getsockopt)	(struct sock *sk, -					 int level, -					 int optname, -					 char __user *optval, -					 int __user *optlen);  	void		(*get_dst)	(struct sctp_transport *t,  					 union sctp_addr *saddr,  					 struct flowi *fl, @@ -1398,7 +1388,7 @@ struct sctp_stream_priorities {  	struct list_head prio_sched;  	/* List of streams scheduled */  	struct list_head active; -	/* The next stream stream in line */ +	/* The next stream in line */  	struct sctp_stream_out_ext *next;  	__u16 prio;  }; @@ -1460,7 +1450,7 @@ struct sctp_stream {  		struct {  			/* List of streams scheduled */  			struct list_head rr_list; -			/* The next stream stream in line */ +			/* The next stream in line */  			struct sctp_stream_out_ext *rr_next;  		};  	}; @@ -1770,7 +1760,7 @@ struct sctp_association {  	int max_burst;  	/* This is the max_retrans value for the association.  This value will -	 * be initialized initialized from system defaults, but can be +	 * be initialized from system defaults, but can be  	 * modified by the SCTP_ASSOCINFO socket option.  	 */  	int max_retrans;  |