mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-19 13:22:03 +00:00
net: drop capability from protocol definitions
struct can_proto had a capability field which wasn't ever used. It is dropped entirely. struct inet_protosw had a capability field which can be more clearly expressed in the code by just checking if sock->type = SOCK_RAW. Signed-off-by: Eric Paris <eparis@redhat.com> Acked-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
89794a6f3b
commit
13f18aa05f
16 changed files with 2 additions and 29 deletions
|
@ -909,7 +909,6 @@ static struct inet_protosw sctp_seqpacket_protosw = {
|
|||
.protocol = IPPROTO_SCTP,
|
||||
.prot = &sctp_prot,
|
||||
.ops = &inet_seqpacket_ops,
|
||||
.capability = -1,
|
||||
.no_check = 0,
|
||||
.flags = SCTP_PROTOSW_FLAG
|
||||
};
|
||||
|
@ -918,7 +917,6 @@ static struct inet_protosw sctp_stream_protosw = {
|
|||
.protocol = IPPROTO_SCTP,
|
||||
.prot = &sctp_prot,
|
||||
.ops = &inet_seqpacket_ops,
|
||||
.capability = -1,
|
||||
.no_check = 0,
|
||||
.flags = SCTP_PROTOSW_FLAG
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue