diff options
Diffstat (limited to 'net/tipc/socket.c')
-rw-r--r-- | net/tipc/socket.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/tipc/socket.c b/net/tipc/socket.c index bfe79bbd83a1..d838a4b66d3a 100644 --- a/net/tipc/socket.c +++ b/net/tipc/socket.c | |||
@@ -1416,6 +1416,11 @@ static int filter_rcv(struct sock *sk, struct sk_buff *buf) | |||
1416 | unsigned int limit = rcvbuf_limit(sk, buf); | 1416 | unsigned int limit = rcvbuf_limit(sk, buf); |
1417 | int rc = TIPC_OK; | 1417 | int rc = TIPC_OK; |
1418 | 1418 | ||
1419 | if (unlikely(msg_user(msg) == CONN_MANAGER)) { | ||
1420 | tipc_port_proto_rcv(&tsk->port, buf); | ||
1421 | return TIPC_OK; | ||
1422 | } | ||
1423 | |||
1419 | /* Reject message if it is wrong sort of message for socket */ | 1424 | /* Reject message if it is wrong sort of message for socket */ |
1420 | if (msg_type(msg) > TIPC_DIRECT_MSG) | 1425 | if (msg_type(msg) > TIPC_DIRECT_MSG) |
1421 | return -TIPC_ERR_NO_PORT; | 1426 | return -TIPC_ERR_NO_PORT; |