diff options
author | Allan Stephens <allan.stephens@windriver.com> | 2006-06-25 23:47:18 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-06-25 23:47:18 -0700 |
commit | 499786516fc12791223f075d682a45ea1129eb04 (patch) | |
tree | 7c1e2b25687eae5c41d8a24b34e6bb4190d969e8 /net/tipc | |
parent | 1303e8f173a8a5000ee6e2fba876fec9474ed1f6 (diff) | |
download | linux-3.10-499786516fc12791223f075d682a45ea1129eb04.tar.gz linux-3.10-499786516fc12791223f075d682a45ea1129eb04.tar.bz2 linux-3.10-499786516fc12791223f075d682a45ea1129eb04.zip |
[TIPC]: Improved performance of error checking during socket creation.
Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
Signed-off-by: Per Liden <per.liden@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc')
-rw-r--r-- | net/tipc/socket.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/net/tipc/socket.c b/net/tipc/socket.c index 8cefacb55aa..a1f22100a61 100644 --- a/net/tipc/socket.c +++ b/net/tipc/socket.c @@ -169,12 +169,6 @@ static int tipc_create(struct socket *sock, int protocol) struct sock *sk; u32 ref; - if ((sock->type != SOCK_STREAM) && - (sock->type != SOCK_SEQPACKET) && - (sock->type != SOCK_DGRAM) && - (sock->type != SOCK_RDM)) - return -EPROTOTYPE; - if (unlikely(protocol != 0)) return -EPROTONOSUPPORT; @@ -199,6 +193,9 @@ static int tipc_create(struct socket *sock, int protocol) sock->ops = &msg_ops; sock->state = SS_READY; break; + default: + tipc_deleteport(ref); + return -EPROTOTYPE; } sk = sk_alloc(AF_TIPC, GFP_KERNEL, &tipc_proto, 1); |