Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Mostly simple cases of overlapping changes (adding code nearby, a function whose name changes, for example). Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -377,7 +377,8 @@ typedef struct sctp_sender_hb_info {
|
||||
__u64 hb_nonce;
|
||||
} sctp_sender_hb_info_t;
|
||||
|
||||
struct sctp_stream *sctp_stream_new(__u16 incnt, __u16 outcnt, gfp_t gfp);
|
||||
int sctp_stream_new(struct sctp_association *asoc, gfp_t gfp);
|
||||
int sctp_stream_init(struct sctp_association *asoc, gfp_t gfp);
|
||||
void sctp_stream_free(struct sctp_stream *stream);
|
||||
void sctp_stream_clear(struct sctp_stream *stream);
|
||||
|
||||
@@ -499,7 +500,6 @@ struct sctp_datamsg {
|
||||
/* Did the messenge fail to send? */
|
||||
int send_error;
|
||||
u8 send_failed:1,
|
||||
force_delay:1,
|
||||
can_delay; /* should this message be Nagle delayed */
|
||||
};
|
||||
|
||||
@@ -952,8 +952,8 @@ void sctp_transport_lower_cwnd(struct sctp_transport *, sctp_lower_cwnd_t);
|
||||
void sctp_transport_burst_limited(struct sctp_transport *);
|
||||
void sctp_transport_burst_reset(struct sctp_transport *);
|
||||
unsigned long sctp_transport_timeout(struct sctp_transport *);
|
||||
void sctp_transport_reset(struct sctp_transport *);
|
||||
void sctp_transport_update_pmtu(struct sock *, struct sctp_transport *, u32);
|
||||
void sctp_transport_reset(struct sctp_transport *t);
|
||||
void sctp_transport_update_pmtu(struct sctp_transport *t, u32 pmtu);
|
||||
void sctp_transport_immediate_rtx(struct sctp_transport *);
|
||||
void sctp_transport_dst_release(struct sctp_transport *t);
|
||||
void sctp_transport_dst_confirm(struct sctp_transport *t);
|
||||
@@ -1880,6 +1880,7 @@ struct sctp_association {
|
||||
|
||||
__u8 need_ecne:1, /* Need to send an ECNE Chunk? */
|
||||
temp:1, /* Is it a temporary association? */
|
||||
force_delay:1,
|
||||
prsctp_enable:1,
|
||||
reconf_enable:1;
|
||||
|
||||
@@ -1955,7 +1956,7 @@ void sctp_assoc_update(struct sctp_association *old,
|
||||
|
||||
__u32 sctp_association_get_next_tsn(struct sctp_association *);
|
||||
|
||||
void sctp_assoc_sync_pmtu(struct sock *, struct sctp_association *);
|
||||
void sctp_assoc_sync_pmtu(struct sctp_association *asoc);
|
||||
void sctp_assoc_rwnd_increase(struct sctp_association *, unsigned int);
|
||||
void sctp_assoc_rwnd_decrease(struct sctp_association *, unsigned int);
|
||||
void sctp_assoc_set_primary(struct sctp_association *,
|
||||
|
Reference in New Issue
Block a user