Whamcloud - gitweb
95750b2623074e2421b7ca70bff1d897ef1c4c7c
[fs/lustre-release.git] / lustre / ptlrpc / ptlrpc_module.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2002, 2003 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22
23 #ifndef EXPORT_SYMTAB
24 # define EXPORT_SYMTAB
25 #endif
26 #define DEBUG_SUBSYSTEM S_RPC
27
28 #ifdef __KERNEL__
29 # include <linux/module.h>
30 # include <linux/init.h>
31 #else
32 # include <liblustre.h>
33 #endif
34
35 #include <linux/obd_support.h>
36 #include <linux/obd_class.h>
37 #include <linux/lustre_net.h>
38
39 #include "ptlrpc_internal.h"
40
41 extern int ptlrpc_init_portals(void);
42 extern void ptlrpc_exit_portals(void);
43
44 __init int ptlrpc_init(void)
45 {
46         int rc;
47         ENTRY;
48
49         lustre_assert_wire_constants();
50
51         rc = ptlrpc_init_portals();
52         if (rc)
53                 RETURN(rc);
54
55         ptlrpc_init_connection();
56         llog_init_commit_master();
57
58         ptlrpc_put_connection_superhack = ptlrpc_put_connection;
59         ptlrpc_abort_inflight_superhack = ptlrpc_abort_inflight;
60
61         ptlrpc_start_pinger();
62         ldlm_init();
63         RETURN(0);
64 }
65
66 #ifdef __KERNEL__
67 static void __exit ptlrpc_exit(void)
68 {
69         ldlm_exit();
70         ptlrpc_stop_pinger();
71         ptlrpc_exit_portals();
72         ptlrpc_cleanup_connection();
73         llog_cleanup_commit_master(0);
74 }
75
76 /* connection.c */
77 EXPORT_SYMBOL(ptlrpc_dump_connections);
78 EXPORT_SYMBOL(ptlrpc_readdress_connection);
79 EXPORT_SYMBOL(ptlrpc_get_connection);
80 EXPORT_SYMBOL(ptlrpc_put_connection);
81 EXPORT_SYMBOL(ptlrpc_connection_addref);
82 EXPORT_SYMBOL(ptlrpc_init_connection);
83 EXPORT_SYMBOL(ptlrpc_cleanup_connection);
84
85 /* niobuf.c */
86 EXPORT_SYMBOL(ptlrpc_bulk_put);
87 EXPORT_SYMBOL(ptlrpc_bulk_get);
88 EXPORT_SYMBOL(ptlrpc_abort_bulk);
89 EXPORT_SYMBOL(ptlrpc_register_bulk);
90 EXPORT_SYMBOL(ptlrpc_unregister_bulk);
91 EXPORT_SYMBOL(ptlrpc_reply);
92 EXPORT_SYMBOL(ptlrpc_error);
93 EXPORT_SYMBOL(ptlrpc_resend_req);
94 EXPORT_SYMBOL(ptl_send_rpc);
95 EXPORT_SYMBOL(ptlrpc_link_svc_me);
96
97 /* client.c */
98 EXPORT_SYMBOL(ptlrpc_init_client);
99 EXPORT_SYMBOL(ptlrpc_cleanup_client);
100 EXPORT_SYMBOL(ptlrpc_req_to_uuid);
101 EXPORT_SYMBOL(ptlrpc_uuid_to_connection);
102 EXPORT_SYMBOL(ptlrpc_queue_wait);
103 EXPORT_SYMBOL(ptlrpc_replay_req);
104 EXPORT_SYMBOL(ptlrpc_restart_req);
105 EXPORT_SYMBOL(ptlrpc_prep_req);
106 EXPORT_SYMBOL(ptlrpc_free_req);
107 EXPORT_SYMBOL(ptlrpc_unregister_reply);
108 EXPORT_SYMBOL(ptlrpc_req_finished);
109 EXPORT_SYMBOL(ptlrpc_req_finished_with_imp_lock);
110 EXPORT_SYMBOL(ptlrpc_request_addref);
111 EXPORT_SYMBOL(ptlrpc_prep_bulk_imp);
112 EXPORT_SYMBOL(ptlrpc_prep_bulk_exp);
113 EXPORT_SYMBOL(ptlrpc_free_bulk);
114 EXPORT_SYMBOL(ptlrpc_prep_bulk_page);
115 EXPORT_SYMBOL(ptlrpc_free_bulk_page);
116 EXPORT_SYMBOL(ptlrpc_abort_inflight);
117 EXPORT_SYMBOL(ptlrpc_retain_replayable_request);
118 EXPORT_SYMBOL(ptlrpc_next_xid);
119
120 EXPORT_SYMBOL(ptlrpc_prep_set);
121 EXPORT_SYMBOL(ptlrpc_set_add_req);
122 EXPORT_SYMBOL(ptlrpc_set_add_new_req);
123 EXPORT_SYMBOL(ptlrpc_set_destroy);
124 EXPORT_SYMBOL(ptlrpc_set_next_timeout);
125 EXPORT_SYMBOL(ptlrpc_check_set);
126 EXPORT_SYMBOL(ptlrpc_set_wait);
127 EXPORT_SYMBOL(ptlrpc_expired_set);
128 EXPORT_SYMBOL(ptlrpc_interrupted_set);
129 EXPORT_SYMBOL(ptlrpc_mark_interrupted);
130
131 /* service.c */
132 EXPORT_SYMBOL(ptlrpc_init_svc);
133 EXPORT_SYMBOL(ptlrpc_stop_all_threads);
134 EXPORT_SYMBOL(ptlrpc_start_n_threads);
135 EXPORT_SYMBOL(ptlrpc_start_thread);
136 EXPORT_SYMBOL(ptlrpc_unregister_service);
137
138 /* pack_generic.c */
139 EXPORT_SYMBOL(lustre_msg_swabbed);
140 EXPORT_SYMBOL(lustre_pack_request);
141 EXPORT_SYMBOL(lustre_pack_reply);
142 EXPORT_SYMBOL(lustre_msg_size);
143 EXPORT_SYMBOL(lustre_unpack_msg);
144 EXPORT_SYMBOL(lustre_msg_buf);
145 EXPORT_SYMBOL(lustre_msg_string);
146 EXPORT_SYMBOL(lustre_swab_reqbuf);
147 EXPORT_SYMBOL(lustre_swab_repbuf);
148 EXPORT_SYMBOL(lustre_swab_obdo);
149 EXPORT_SYMBOL(lustre_swab_obd_statfs);
150 EXPORT_SYMBOL(lustre_swab_obd_ioobj);
151 EXPORT_SYMBOL(lustre_swab_niobuf_remote);
152 EXPORT_SYMBOL(lustre_swab_ost_body);
153 EXPORT_SYMBOL(lustre_swab_ost_last_id);
154 EXPORT_SYMBOL(lustre_swab_ll_fid);
155 EXPORT_SYMBOL(lustre_swab_mds_status_req);
156 EXPORT_SYMBOL(lustre_swab_mds_body);
157 EXPORT_SYMBOL(lustre_swab_mds_rec_setattr);
158 EXPORT_SYMBOL(lustre_swab_mds_rec_create);
159 EXPORT_SYMBOL(lustre_swab_mds_rec_link);
160 EXPORT_SYMBOL(lustre_swab_mds_rec_unlink);
161 EXPORT_SYMBOL(lustre_swab_mds_rec_rename);
162 EXPORT_SYMBOL(lustre_swab_lov_desc);
163 EXPORT_SYMBOL(lustre_swab_ldlm_res_id);
164 EXPORT_SYMBOL(lustre_swab_ldlm_policy_data);
165 EXPORT_SYMBOL(lustre_swab_ldlm_intent);
166 EXPORT_SYMBOL(lustre_swab_ldlm_resource_desc);
167 EXPORT_SYMBOL(lustre_swab_ldlm_lock_desc);
168 EXPORT_SYMBOL(lustre_swab_ldlm_request);
169 EXPORT_SYMBOL(lustre_swab_ldlm_reply);
170 EXPORT_SYMBOL(lustre_swab_ptlbd_op);
171 EXPORT_SYMBOL(lustre_swab_ptlbd_niob);
172 EXPORT_SYMBOL(lustre_swab_ptlbd_rsp);
173
174 /* recover.c */
175 EXPORT_SYMBOL(ptlrpc_run_recovery_over_upcall);
176 EXPORT_SYMBOL(ptlrpc_run_failed_import_upcall);
177 EXPORT_SYMBOL(ptlrpc_connect_import);
178 EXPORT_SYMBOL(ptlrpc_disconnect_import);
179 EXPORT_SYMBOL(ptlrpc_replay);
180 EXPORT_SYMBOL(ptlrpc_resend);
181 EXPORT_SYMBOL(ptlrpc_wake_delayed);
182 EXPORT_SYMBOL(ptlrpc_set_import_active);
183 EXPORT_SYMBOL(ptlrpc_fail_import);
184 EXPORT_SYMBOL(ptlrpc_fail_export);
185 EXPORT_SYMBOL(ptlrpc_recover_import);
186
187 /* pinger.c */
188 EXPORT_SYMBOL(ptlrpc_pinger_add_import);
189 EXPORT_SYMBOL(ptlrpc_pinger_del_import);
190 EXPORT_SYMBOL(ptlrpc_pinger_sending_on_import);
191
192 /* ptlrpcd.c */
193 EXPORT_SYMBOL(ptlrpcd_addref);
194 EXPORT_SYMBOL(ptlrpcd_decref);
195 EXPORT_SYMBOL(ptlrpcd_add_req);
196 EXPORT_SYMBOL(ptlrpcd_wake);
197
198 /* lproc_ptlrpc.c */
199 EXPORT_SYMBOL(ptlrpc_lprocfs_register_obd);
200 EXPORT_SYMBOL(ptlrpc_lprocfs_unregister_obd);
201
202 /* llogd.c */
203 EXPORT_SYMBOL(llog_origin_handle_create);
204 EXPORT_SYMBOL(llog_origin_handle_next_block);
205 EXPORT_SYMBOL(llog_origin_handle_read_header);
206 EXPORT_SYMBOL(llog_origin_handle_close);
207 EXPORT_SYMBOL(llog_client_ops);
208 EXPORT_SYMBOL(llog_catinfo);
209
210 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
211 MODULE_DESCRIPTION("Lustre Request Processor and Lock Management");
212 MODULE_LICENSE("GPL");
213
214 module_init(ptlrpc_init);
215 module_exit(ptlrpc_exit);
216 #endif