diff options
author | Ying Xue <ying.xue@windriver.com> | 2014-05-04 20:56:18 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-05-05 17:26:45 -0400 |
commit | 52ff872055e06af10f94b8853c946f07ed8a0672 (patch) | |
tree | f8a32816ff224eddbc8a8b18e5b83cdf8b5b5f81 /net/tipc/core.c | |
parent | 3f5a12bd9f9a61d8a12f9adf778b14e4bb8ca050 (diff) |
tipc: purge signal handler infrastructure
In the previous commits of this series, we removed all asynchronous
actions which were based on the tasklet handler - "tipc_k_signal()".
So the moment has now come when we can completely remove the tasklet
handler infrastructure. That is done with this commit.
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/core.c')
-rw-r--r-- | net/tipc/core.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/net/tipc/core.c b/net/tipc/core.c index 50d57429ebca..57f8ae9aa466 100644 --- a/net/tipc/core.c +++ b/net/tipc/core.c | |||
@@ -80,7 +80,6 @@ struct sk_buff *tipc_buf_acquire(u32 size) | |||
80 | */ | 80 | */ |
81 | static void tipc_core_stop(void) | 81 | static void tipc_core_stop(void) |
82 | { | 82 | { |
83 | tipc_handler_stop(); | ||
84 | tipc_net_stop(); | 83 | tipc_net_stop(); |
85 | tipc_bearer_cleanup(); | 84 | tipc_bearer_cleanup(); |
86 | tipc_netlink_stop(); | 85 | tipc_netlink_stop(); |
@@ -100,10 +99,6 @@ static int tipc_core_start(void) | |||
100 | 99 | ||
101 | get_random_bytes(&tipc_random, sizeof(tipc_random)); | 100 | get_random_bytes(&tipc_random, sizeof(tipc_random)); |
102 | 101 | ||
103 | err = tipc_handler_start(); | ||
104 | if (err) | ||
105 | goto out_handler; | ||
106 | |||
107 | err = tipc_ref_table_init(tipc_max_ports, tipc_random); | 102 | err = tipc_ref_table_init(tipc_max_ports, tipc_random); |
108 | if (err) | 103 | if (err) |
109 | goto out_reftbl; | 104 | goto out_reftbl; |
@@ -146,8 +141,6 @@ out_netlink: | |||
146 | out_nametbl: | 141 | out_nametbl: |
147 | tipc_ref_table_stop(); | 142 | tipc_ref_table_stop(); |
148 | out_reftbl: | 143 | out_reftbl: |
149 | tipc_handler_stop(); | ||
150 | out_handler: | ||
151 | return err; | 144 | return err; |
152 | } | 145 | } |
153 | 146 | ||