diff options
author | David S. Miller <davem@davemloft.net> | 2019-07-08 20:16:25 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-07-08 20:16:25 -0700 |
commit | 6c6fbad6576fb19f93770feabcf2d0a30b4ae0e2 (patch) | |
tree | 28a423f0030d481ca5a1ea0e66aeccb366219781 /net/sctp/stream_sched.c | |
parent | ccf355e52a3265624b7acadd693c849d599e9b9f (diff) | |
parent | e55f4b8bf4622103badac8694cdabceec06f9b38 (diff) |
Merge branch 'sctp-tidyup'
Xin Long says:
====================
sctp: tidy up some ep and asoc feature flags
This patchset is to remove some unnecessary feature flags from
sctp_assocation and move some others to the right places.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/stream_sched.c')
-rw-r--r-- | net/sctp/stream_sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/stream_sched.c b/net/sctp/stream_sched.c index b8fa7ab3e394..99e5f69fbb74 100644 --- a/net/sctp/stream_sched.c +++ b/net/sctp/stream_sched.c @@ -228,7 +228,7 @@ int sctp_sched_get_value(struct sctp_association *asoc, __u16 sid, void sctp_sched_dequeue_done(struct sctp_outq *q, struct sctp_chunk *ch) { if (!list_is_last(&ch->frag_list, &ch->msg->chunks) && - !q->asoc->intl_enable) { + !q->asoc->peer.intl_capable) { struct sctp_stream_out *sout; __u16 sid; |