diff options
author | Xin Long <lucien.xin@gmail.com> | 2019-07-09 00:57:05 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-07-08 20:16:24 -0700 |
commit | 1c13475368b697d4fc9c0630b5d4ee51d5ca0790 (patch) | |
tree | 9773074ff44077d62718f381a975164056208814 /include/net | |
parent | a96701fb3534c45bd6fe5e6f6d3a91e3acc19b59 (diff) |
sctp: remove prsctp_enable from asoc
Like reconf_enable, prsctp_enable should also be removed from asoc,
as asoc->peer.prsctp_capable has taken its job.
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/sctp/structs.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h index d9e0e1a53f99..7f35b8ee9f65 100644 --- a/include/net/sctp/structs.h +++ b/include/net/sctp/structs.h @@ -2050,8 +2050,7 @@ struct sctp_association { __u8 need_ecne:1, /* Need to send an ECNE Chunk? */ temp:1, /* Is it a temporary association? */ force_delay:1, - intl_enable:1, - prsctp_enable:1; + intl_enable:1; __u8 strreset_enable; __u8 strreset_outstanding; /* request param count on the fly */ |