diff options
author | Allan Stephens <Allan.Stephens@windriver.com> | 2010-12-31 18:59:22 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-01-01 13:57:51 -0800 |
commit | b0c1e928c85023c73780b5d9873406ccf1cd8019 (patch) | |
tree | f5c7f9e15f4eda8a7b94660de1748da8dd41fcab /net/tipc/core.c | |
parent | aa70200e001fc4d76552c974c94f65ab26020203 (diff) | |
download | linux-b0c1e928c85023c73780b5d9873406ccf1cd8019.tar.gz linux-b0c1e928c85023c73780b5d9873406ccf1cd8019.tar.bz2 linux-b0c1e928c85023c73780b5d9873406ccf1cd8019.zip |
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.c | 3 |
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 @@ #include "core.h" #include "ref.h" #include "net.h" -#include "user_reg.h" #include "name_table.h" #include "subscr.h" #include "config.h" @@ -144,7 +143,6 @@ static void tipc_core_stop(void) tipc_handler_stop(); tipc_cfg_stop(); tipc_subscr_stop(); - tipc_reg_stop(); tipc_nametbl_stop(); tipc_ref_table_stop(); tipc_socket_stop(); @@ -167,7 +165,6 @@ static int tipc_core_start(void) if ((res = tipc_handler_start()) || (res = tipc_ref_table_init(tipc_max_ports, tipc_random)) || - (res = tipc_reg_start()) || (res = tipc_nametbl_init()) || (res = tipc_k_signal((Handler)tipc_subscr_start, 0)) || (res = tipc_k_signal((Handler)tipc_cfg_init, 0)) || |