]> git.baikalelectronics.ru Git - kernel.git/commit
tipc: rename and move message reassembly function
authorJon Paul Maloy <jon.maloy@ericsson.com>
Wed, 14 May 2014 09:39:12 +0000 (05:39 -0400)
committerDavid S. Miller <davem@davemloft.net>
Wed, 14 May 2014 19:19:48 +0000 (15:19 -0400)
commit76d6c2d61b0ef1d75432239fd63e24c5f9019fbb
treef59a133e852df71ad5d34615f60d08483ec1ed18
parentbe3ec9cb65e53322e99cee5439ea2498c86fd56c
tipc: rename and move message reassembly function

The function tipc_link_frag_rcv() is in reality a re-entrant generic
message reassemby function that has nothing in particular to do with
the link, where it is defined now. This becomes obvious when we see
the need to call the function from other places in the code.

In this commit rename it to tipc_buf_append() and move it to the file
msg.c. We also simplify its signature by moving the tail pointer to
the control block of the head buffer, hence making the head buffer
self-contained.

Signed-off-by: Jon Maloy <jon.maloy@ericsson.com>
Reviewed-by: Ying Xue <ying.xue@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/tipc/bcast.c
net/tipc/core.h
net/tipc/link.c
net/tipc/link.h
net/tipc/msg.c
net/tipc/msg.h
net/tipc/node.c
net/tipc/node.h