aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/link.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/tipc/link.c')
-rw-r--r--net/tipc/link.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/net/tipc/link.c b/net/tipc/link.c
index a42f43430101..087379366d3c 100644
--- a/net/tipc/link.c
+++ b/net/tipc/link.c
@@ -1811,6 +1811,12 @@ void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *tb_ptr)
1811#endif 1811#endif
1812 msg_dbg(msg,"<REC<"); 1812 msg_dbg(msg,"<REC<");
1813 1813
1814 /* Ensure message data is a single contiguous unit */
1815
1816 if (unlikely(buf_linearize(buf))) {
1817 goto cont;
1818 }
1819
1814 if (unlikely(msg_non_seq(msg))) { 1820 if (unlikely(msg_non_seq(msg))) {
1815 link_recv_non_seq(buf); 1821 link_recv_non_seq(buf);
1816 continue; 1822 continue;