summaryrefslogtreecommitdiffstats
path: root/net/tipc/bcast.c
diff options
context:
space:
mode:
authorJon Paul Maloy2016-03-03 20:23:21 +0100
committerDavid S. Miller2016-03-07 05:01:20 +0100
commite74a386d70c793ef44678b44b021c99094b28c47 (patch)
tree9aad55ccddd9755bdf9ea80d3e6e3fe01cab505c /net/tipc/bcast.c
parenttipc: make sure required IPv6 addresses are scoped (diff)
downloadkernel-qcow2-linux-e74a386d70c793ef44678b44b021c99094b28c47.tar.gz
kernel-qcow2-linux-e74a386d70c793ef44678b44b021c99094b28c47.tar.xz
kernel-qcow2-linux-e74a386d70c793ef44678b44b021c99094b28c47.zip
tipc: remove pre-allocated message header in link struct
Until now, we have kept a pre-allocated protocol message header aggregated into struct tipc_link. Apart from adding unnecessary footprint to the link instances, this requires extra code both to initialize and re-initialize it. We now remove this sub-optimization. This change also makes it possible to clean up the function tipc_build_proto_msg() and remove a couple of small functions that were accessing the mentioned header. In particular, we can replace all occurrences of the local function call link_own_addr(link) with the generic tipc_own_addr(net). Acked-by: Ying Xue <ying.xue@windriver.com> Signed-off-by: Jon Maloy <jon.maloy@ericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/bcast.c')
-rw-r--r--net/tipc/bcast.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/net/tipc/bcast.c b/net/tipc/bcast.c
index e401108360a2..ae469b37d852 100644
--- a/net/tipc/bcast.c
+++ b/net/tipc/bcast.c
@@ -412,11 +412,6 @@ enomem:
return -ENOMEM;
}
-void tipc_bcast_reinit(struct net *net)
-{
- tipc_link_reinit(tipc_bc_sndlink(net), tipc_own_addr(net));
-}
-
void tipc_bcast_stop(struct net *net)
{
struct tipc_net *tn = net_generic(net, tipc_net_id);