aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/core.c
diff options
context:
space:
mode:
authorAllan Stephens <Allan.Stephens@windriver.com>2010-12-31 13:59:22 -0500
committerDavid S. Miller <davem@davemloft.net>2011-01-01 16:57:51 -0500
commitb0c1e928c85023c73780b5d9873406ccf1cd8019 (patch)
treef5c7f9e15f4eda8a7b94660de1748da8dd41fcab /net/tipc/core.c
parentaa70200e001fc4d76552c974c94f65ab26020203 (diff)
tipc: Remove user registry subsystem
Eliminates routines, data structures, and files that make up TIPC's user registry. The user registry is no longer needed since the native API routines that utilized it no longer exist and there are no longer any internal TIPC services that use it. Signed-off-by: Allan Stephens <Allan.Stephens@windriver.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/core.c')
-rw-r--r--net/tipc/core.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/net/tipc/core.c b/net/tipc/core.c
index b9a3ef13f7e7..a02bc490caae 100644
--- a/net/tipc/core.c
+++ b/net/tipc/core.c
@@ -42,7 +42,6 @@
42#include "core.h" 42#include "core.h"
43#include "ref.h" 43#include "ref.h"
44#include "net.h" 44#include "net.h"
45#include "user_reg.h"
46#include "name_table.h" 45#include "name_table.h"
47#include "subscr.h" 46#include "subscr.h"
48#include "config.h" 47#include "config.h"
@@ -144,7 +143,6 @@ static void tipc_core_stop(void)
144 tipc_handler_stop(); 143 tipc_handler_stop();
145 tipc_cfg_stop(); 144 tipc_cfg_stop();
146 tipc_subscr_stop(); 145 tipc_subscr_stop();
147 tipc_reg_stop();
148 tipc_nametbl_stop(); 146 tipc_nametbl_stop();
149 tipc_ref_table_stop(); 147 tipc_ref_table_stop();
150 tipc_socket_stop(); 148 tipc_socket_stop();
@@ -167,7 +165,6 @@ static int tipc_core_start(void)
167 165
168 if ((res = tipc_handler_start()) || 166 if ((res = tipc_handler_start()) ||
169 (res = tipc_ref_table_init(tipc_max_ports, tipc_random)) || 167 (res = tipc_ref_table_init(tipc_max_ports, tipc_random)) ||
170 (res = tipc_reg_start()) ||
171 (res = tipc_nametbl_init()) || 168 (res = tipc_nametbl_init()) ||
172 (res = tipc_k_signal((Handler)tipc_subscr_start, 0)) || 169 (res = tipc_k_signal((Handler)tipc_subscr_start, 0)) ||
173 (res = tipc_k_signal((Handler)tipc_cfg_init, 0)) || 170 (res = tipc_k_signal((Handler)tipc_cfg_init, 0)) ||