diff options
Diffstat (limited to 'include/net/sctp/structs.h')
-rw-r--r-- | include/net/sctp/structs.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h index 4ff3f67be62c..2bb2fcf5b11f 100644 --- a/include/net/sctp/structs.h +++ b/include/net/sctp/structs.h | |||
@@ -531,7 +531,7 @@ struct sctp_datamsg { | |||
531 | 531 | ||
532 | struct sctp_datamsg *sctp_datamsg_from_user(struct sctp_association *, | 532 | struct sctp_datamsg *sctp_datamsg_from_user(struct sctp_association *, |
533 | struct sctp_sndrcvinfo *, | 533 | struct sctp_sndrcvinfo *, |
534 | struct msghdr *, int len); | 534 | struct iov_iter *); |
535 | void sctp_datamsg_free(struct sctp_datamsg *); | 535 | void sctp_datamsg_free(struct sctp_datamsg *); |
536 | void sctp_datamsg_put(struct sctp_datamsg *); | 536 | void sctp_datamsg_put(struct sctp_datamsg *); |
537 | void sctp_chunk_fail(struct sctp_chunk *, int error); | 537 | void sctp_chunk_fail(struct sctp_chunk *, int error); |
@@ -647,8 +647,8 @@ struct sctp_chunk { | |||
647 | 647 | ||
648 | void sctp_chunk_hold(struct sctp_chunk *); | 648 | void sctp_chunk_hold(struct sctp_chunk *); |
649 | void sctp_chunk_put(struct sctp_chunk *); | 649 | void sctp_chunk_put(struct sctp_chunk *); |
650 | int sctp_user_addto_chunk(struct sctp_chunk *chunk, int off, int len, | 650 | int sctp_user_addto_chunk(struct sctp_chunk *chunk, int len, |
651 | struct iovec *data); | 651 | struct iov_iter *from); |
652 | void sctp_chunk_free(struct sctp_chunk *); | 652 | void sctp_chunk_free(struct sctp_chunk *); |
653 | void *sctp_addto_chunk(struct sctp_chunk *, int len, const void *data); | 653 | void *sctp_addto_chunk(struct sctp_chunk *, int len, const void *data); |
654 | struct sctp_chunk *sctp_chunkify(struct sk_buff *, | 654 | struct sctp_chunk *sctp_chunkify(struct sk_buff *, |
@@ -1116,7 +1116,6 @@ int sctp_raw_to_bind_addrs(struct sctp_bind_addr *bp, __u8 *raw, int len, | |||
1116 | sctp_scope_t sctp_scope(const union sctp_addr *); | 1116 | sctp_scope_t sctp_scope(const union sctp_addr *); |
1117 | int sctp_in_scope(struct net *net, const union sctp_addr *addr, const sctp_scope_t scope); | 1117 | int sctp_in_scope(struct net *net, const union sctp_addr *addr, const sctp_scope_t scope); |
1118 | int sctp_is_any(struct sock *sk, const union sctp_addr *addr); | 1118 | int sctp_is_any(struct sock *sk, const union sctp_addr *addr); |
1119 | int sctp_addr_is_valid(const union sctp_addr *addr); | ||
1120 | int sctp_is_ep_boundall(struct sock *sk); | 1119 | int sctp_is_ep_boundall(struct sock *sk); |
1121 | 1120 | ||
1122 | 1121 | ||