diff options
author | Ying Xue <ying.xue@windriver.com> | 2014-05-05 04:56:16 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-05-06 01:26:45 +0400 |
commit | eb8b00f5f248c50603bca383792ac3a618297be0 (patch) | |
tree | 429c3bff534952209c848f011cb675530a115b5d /net/tipc/net.h | |
parent | d69afc90b8d47e471d2870f090f662e569b08407 (diff) | |
download | linux-eb8b00f5f248c50603bca383792ac3a618297be0.tar.xz |
tipc: convert allocations of global variables associated with bclink
Convert allocations of global variables associated with bclink from
static way to dynamical way for the convenience of bclink instance
initialisation. Meanwhile, this also helps TIPC support name space
in the future easily.
Signed-off-by: Ying Xue <ying.xue@windriver.com>
Reviewed-by: Erik Hugne <erik.hugne@ericsson.com>
Reviewed-by: Jon Maloy <jon.maloy@ericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/net.h')
-rw-r--r-- | net/tipc/net.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/net.h b/net/tipc/net.h index f781cae8df4b..c6c2b46f7c28 100644 --- a/net/tipc/net.h +++ b/net/tipc/net.h @@ -39,7 +39,7 @@ void tipc_net_route_msg(struct sk_buff *buf); -void tipc_net_start(u32 addr); +int tipc_net_start(u32 addr); void tipc_net_stop(void); #endif |