diff options
Diffstat (limited to 'net/tipc')
-rw-r--r-- | net/tipc/link.c | 2 | ||||
-rw-r--r-- | net/tipc/socket.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/net/tipc/link.c b/net/tipc/link.c index 2792a3cae682..ac306d17f8ad 100644 --- a/net/tipc/link.c +++ b/net/tipc/link.c | |||
@@ -1126,7 +1126,7 @@ static bool tipc_data_input(struct tipc_link *l, struct sk_buff *skb, | |||
1126 | skb_queue_tail(mc_inputq, skb); | 1126 | skb_queue_tail(mc_inputq, skb); |
1127 | return true; | 1127 | return true; |
1128 | } | 1128 | } |
1129 | /* else: fall through */ | 1129 | /* fall through */ |
1130 | case CONN_MANAGER: | 1130 | case CONN_MANAGER: |
1131 | skb_queue_tail(inputq, skb); | 1131 | skb_queue_tail(inputq, skb); |
1132 | return true; | 1132 | return true; |
diff --git a/net/tipc/socket.c b/net/tipc/socket.c index 1217c90a363b..8fc5acd4820d 100644 --- a/net/tipc/socket.c +++ b/net/tipc/socket.c | |||
@@ -735,7 +735,7 @@ static __poll_t tipc_poll(struct file *file, struct socket *sock, | |||
735 | case TIPC_CONNECTING: | 735 | case TIPC_CONNECTING: |
736 | if (!tsk->cong_link_cnt && !tsk_conn_cong(tsk)) | 736 | if (!tsk->cong_link_cnt && !tsk_conn_cong(tsk)) |
737 | revents |= EPOLLOUT; | 737 | revents |= EPOLLOUT; |
738 | /* fall thru' */ | 738 | /* fall through */ |
739 | case TIPC_LISTEN: | 739 | case TIPC_LISTEN: |
740 | if (!skb_queue_empty(&sk->sk_receive_queue)) | 740 | if (!skb_queue_empty(&sk->sk_receive_queue)) |
741 | revents |= EPOLLIN | EPOLLRDNORM; | 741 | revents |= EPOLLIN | EPOLLRDNORM; |
@@ -2416,7 +2416,7 @@ static int tipc_connect(struct socket *sock, struct sockaddr *dest, | |||
2416 | * case is EINPROGRESS, rather than EALREADY. | 2416 | * case is EINPROGRESS, rather than EALREADY. |
2417 | */ | 2417 | */ |
2418 | res = -EINPROGRESS; | 2418 | res = -EINPROGRESS; |
2419 | /* fall thru' */ | 2419 | /* fall through */ |
2420 | case TIPC_CONNECTING: | 2420 | case TIPC_CONNECTING: |
2421 | if (!timeout) { | 2421 | if (!timeout) { |
2422 | if (previous == TIPC_CONNECTING) | 2422 | if (previous == TIPC_CONNECTING) |