diff options
author | Allan Stephens <allan.stephens@windriver.com> | 2010-11-30 07:00:53 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-12-02 16:34:01 -0500 |
commit | d265fef6ddf9042195aae551e1fde211c2a1588b (patch) | |
tree | b9c45caac6e191f6c68df3cc215831ee7e8f1e21 /net/tipc/core.c | |
parent | dca9b2404a6d6579828da2425c051462701efd3f (diff) |
tipc: Remove obsolete native API files and exports
As part of the removal of TIPC's native API support it is no longer
necessary for TIPC to export symbols for routines that can be called
by kernel-based applications, nor for it to have header files that
kernel-based applications can include to access the declarations for
those routines. This commit eliminates the exporting of symbols by
TIPC and migrates the contents of each obsolete native API include
file into its corresponding non-native API equivalent.
The code which was migrated in this commit was migrated intact, in
that there are no technical changes combined with the relocation.
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 | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/net/tipc/core.c b/net/tipc/core.c index e2a09eb8efd4..785362f6a411 100644 --- a/net/tipc/core.c +++ b/net/tipc/core.c | |||
@@ -236,43 +236,3 @@ module_exit(tipc_exit); | |||
236 | MODULE_DESCRIPTION("TIPC: Transparent Inter Process Communication"); | 236 | MODULE_DESCRIPTION("TIPC: Transparent Inter Process Communication"); |
237 | MODULE_LICENSE("Dual BSD/GPL"); | 237 | MODULE_LICENSE("Dual BSD/GPL"); |
238 | MODULE_VERSION(TIPC_MOD_VER); | 238 | MODULE_VERSION(TIPC_MOD_VER); |
239 | |||
240 | /* Native TIPC API for kernel-space applications (see tipc.h) */ | ||
241 | |||
242 | EXPORT_SYMBOL(tipc_attach); | ||
243 | EXPORT_SYMBOL(tipc_detach); | ||
244 | EXPORT_SYMBOL(tipc_createport); | ||
245 | EXPORT_SYMBOL(tipc_deleteport); | ||
246 | EXPORT_SYMBOL(tipc_ownidentity); | ||
247 | EXPORT_SYMBOL(tipc_portimportance); | ||
248 | EXPORT_SYMBOL(tipc_set_portimportance); | ||
249 | EXPORT_SYMBOL(tipc_portunreliable); | ||
250 | EXPORT_SYMBOL(tipc_set_portunreliable); | ||
251 | EXPORT_SYMBOL(tipc_portunreturnable); | ||
252 | EXPORT_SYMBOL(tipc_set_portunreturnable); | ||
253 | EXPORT_SYMBOL(tipc_publish); | ||
254 | EXPORT_SYMBOL(tipc_withdraw); | ||
255 | EXPORT_SYMBOL(tipc_connect2port); | ||
256 | EXPORT_SYMBOL(tipc_disconnect); | ||
257 | EXPORT_SYMBOL(tipc_shutdown); | ||
258 | EXPORT_SYMBOL(tipc_send); | ||
259 | EXPORT_SYMBOL(tipc_send2name); | ||
260 | EXPORT_SYMBOL(tipc_send2port); | ||
261 | EXPORT_SYMBOL(tipc_multicast); | ||
262 | |||
263 | /* TIPC API for external bearers (see tipc_bearer.h) */ | ||
264 | |||
265 | EXPORT_SYMBOL(tipc_block_bearer); | ||
266 | EXPORT_SYMBOL(tipc_continue); | ||
267 | EXPORT_SYMBOL(tipc_disable_bearer); | ||
268 | EXPORT_SYMBOL(tipc_enable_bearer); | ||
269 | EXPORT_SYMBOL(tipc_recv_msg); | ||
270 | EXPORT_SYMBOL(tipc_register_media); | ||
271 | |||
272 | /* TIPC API for external APIs (see tipc_port.h) */ | ||
273 | |||
274 | EXPORT_SYMBOL(tipc_createport_raw); | ||
275 | EXPORT_SYMBOL(tipc_reject_msg); | ||
276 | EXPORT_SYMBOL(tipc_send_buf_fast); | ||
277 | EXPORT_SYMBOL(tipc_acknowledge); | ||
278 | |||