]> git.baikalelectronics.ru Git - kernel.git/commit
tipc: fix bug in bundled buffer reception
authorJon Paul Maloy <jon.maloy@ericsson.com>
Fri, 17 Oct 2014 19:25:28 +0000 (15:25 -0400)
committerDavid S. Miller <davem@davemloft.net>
Sat, 18 Oct 2014 03:50:53 +0000 (23:50 -0400)
commitb7014dc3aae4545ae0aaab89a4039df196a72319
tree38c2d7717a60e32c7e814d49877500ab8c3ed3b3
parent40a2ffe077198752237c839b9879ef8072283445
tipc: fix bug in bundled buffer reception

In commit d6958d762afcec684627deb949f639eb825e3202 ("tipc: same receive
code path for connection protocol and data messages") we omitted the
the possiblilty that an arriving message extracted from a bundle buffer
may be a multicast message. Such messages need to be to be delivered to
the socket via a separate function, tipc_sk_mcast_rcv(). As a result,
small multicast messages arriving as members of a bundle buffer will be
silently dropped.

This commit corrects the error by considering this case in the function
tipc_link_bundle_rcv().

Signed-off-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tipc/link.c