Whamcloud - gitweb
Branch b1_4_mountconf
[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 the Lustre file system, http://www.lustre.org
7  *   Lustre is a trademark of Cluster File Systems, Inc.
8  *
9  *   You may have signed or agreed to another license before downloading
10  *   this software.  If so, you are bound by the terms and conditions
11  *   of that agreement, and the following does not apply to you.  See the
12  *   LICENSE file included with this distribution for more information.
13  *
14  *   If you did not agree to a different license, then this copy of Lustre
15  *   is open source software; you can redistribute it and/or modify it
16  *   under the terms of version 2 of the GNU General Public License as
17  *   published by the Free Software Foundation.
18  *
19  *   In either case, Lustre is distributed in the hope that it will be
20  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
21  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  *   license text for more details.
23  *
24  */
25
26 #ifndef EXPORT_SYMTAB
27 # define EXPORT_SYMTAB
28 #endif
29 #define DEBUG_SUBSYSTEM S_RPC
30
31 #ifdef __KERNEL__
32 # include <linux/module.h>
33 # include <linux/init.h>
34 #else
35 # include <liblustre.h>
36 #endif
37
38 #include <linux/obd_support.h>
39 #include <linux/obd_class.h>
40 #include <linux/lustre_net.h>
41
42 #include "ptlrpc_internal.h"
43
44 extern int ptlrpc_init_portals(void);
45 extern void ptlrpc_exit_portals(void);
46
47 __init int ptlrpc_init(void)
48 {
49         int rc;
50         ENTRY;
51
52         lustre_assert_wire_constants();
53
54         rc = ptlrpc_init_portals();
55         if (rc)
56                 RETURN(rc);
57
58         ptlrpc_init_connection();
59         llog_init_commit_master();
60
61         ptlrpc_put_connection_superhack = ptlrpc_put_connection;
62         ptlrpc_abort_inflight_superhack = ptlrpc_abort_inflight;
63
64         ptlrpc_start_pinger();
65         ldlm_init();
66         RETURN(0);
67 }
68
69 #ifdef __KERNEL__
70 static void __exit ptlrpc_exit(void)
71 {
72         ldlm_exit();
73         ptlrpc_stop_pinger();
74         ptlrpc_exit_portals();
75         ptlrpc_cleanup_connection();
76         llog_cleanup_commit_master(0);
77 }
78
79 /* connection.c */
80 EXPORT_SYMBOL(ptlrpc_dump_connections);
81 EXPORT_SYMBOL(ptlrpc_readdress_connection);
82 EXPORT_SYMBOL(ptlrpc_get_connection);
83 EXPORT_SYMBOL(ptlrpc_put_connection);
84 EXPORT_SYMBOL(ptlrpc_connection_addref);
85 EXPORT_SYMBOL(ptlrpc_init_connection);
86 EXPORT_SYMBOL(ptlrpc_cleanup_connection);
87
88 /* niobuf.c */
89 EXPORT_SYMBOL(ptlrpc_start_bulk_transfer);
90 EXPORT_SYMBOL(ptlrpc_abort_bulk);
91 EXPORT_SYMBOL(ptlrpc_register_bulk);
92 EXPORT_SYMBOL(ptlrpc_unregister_bulk);
93 EXPORT_SYMBOL(ptlrpc_send_reply);
94 EXPORT_SYMBOL(ptlrpc_reply);
95 EXPORT_SYMBOL(ptlrpc_error);
96 EXPORT_SYMBOL(ptlrpc_resend_req);
97 EXPORT_SYMBOL(ptl_send_rpc);
98 EXPORT_SYMBOL(ptl_send_rpc_nowait);
99
100 /* client.c */
101 EXPORT_SYMBOL(ptlrpc_init_client);
102 EXPORT_SYMBOL(ptlrpc_cleanup_client);
103 EXPORT_SYMBOL(ptlrpc_uuid_to_connection);
104 EXPORT_SYMBOL(ptlrpc_queue_wait);
105 EXPORT_SYMBOL(ptlrpc_replay_req);
106 EXPORT_SYMBOL(ptlrpc_restart_req);
107 EXPORT_SYMBOL(ptlrpc_add_rqs_to_pool);
108 EXPORT_SYMBOL(ptlrpc_init_rq_pool);
109 EXPORT_SYMBOL(ptlrpc_free_rq_pool);
110 EXPORT_SYMBOL(ptlrpc_prep_req_pool);
111 EXPORT_SYMBOL(ptlrpc_prep_req);
112 EXPORT_SYMBOL(ptlrpc_free_req);
113 EXPORT_SYMBOL(ptlrpc_unregister_reply);
114 EXPORT_SYMBOL(ptlrpc_req_finished);
115 EXPORT_SYMBOL(ptlrpc_req_finished_with_imp_lock);
116 EXPORT_SYMBOL(ptlrpc_request_addref);
117 EXPORT_SYMBOL(ptlrpc_prep_bulk_imp);
118 EXPORT_SYMBOL(ptlrpc_prep_bulk_exp);
119 EXPORT_SYMBOL(ptlrpc_free_bulk);
120 EXPORT_SYMBOL(ptlrpc_prep_bulk_page);
121 EXPORT_SYMBOL(ptlrpc_abort_inflight);
122 EXPORT_SYMBOL(ptlrpc_retain_replayable_request);
123 EXPORT_SYMBOL(ptlrpc_next_xid);
124
125 EXPORT_SYMBOL(ptlrpc_prep_set);
126 EXPORT_SYMBOL(ptlrpc_set_add_req);
127 EXPORT_SYMBOL(ptlrpc_set_add_new_req);
128 EXPORT_SYMBOL(ptlrpc_set_destroy);
129 EXPORT_SYMBOL(ptlrpc_set_next_timeout);
130 EXPORT_SYMBOL(ptlrpc_check_set);
131 EXPORT_SYMBOL(ptlrpc_set_wait);
132 EXPORT_SYMBOL(ptlrpc_expired_set);
133 EXPORT_SYMBOL(ptlrpc_interrupted_set);
134 EXPORT_SYMBOL(ptlrpc_mark_interrupted);
135
136 /* service.c */
137 EXPORT_SYMBOL(ptlrpc_save_lock);
138 EXPORT_SYMBOL(ptlrpc_schedule_difficult_reply);
139 EXPORT_SYMBOL(ptlrpc_commit_replies);
140 EXPORT_SYMBOL(ptlrpc_init_svc);
141 EXPORT_SYMBOL(ptlrpc_stop_all_threads);
142 EXPORT_SYMBOL(ptlrpc_start_threads);
143 EXPORT_SYMBOL(ptlrpc_start_thread);
144 EXPORT_SYMBOL(ptlrpc_unregister_service);
145 EXPORT_SYMBOL(ptlrpc_daemonize);
146 EXPORT_SYMBOL(ptlrpc_service_health_check);
147
148 /* pack_generic.c */
149 EXPORT_SYMBOL(lustre_msg_swabbed);
150 EXPORT_SYMBOL(lustre_pack_request);
151 EXPORT_SYMBOL(lustre_pack_reply);
152 EXPORT_SYMBOL(lustre_free_reply_state);
153 EXPORT_SYMBOL(lustre_msg_size);
154 EXPORT_SYMBOL(lustre_unpack_msg);
155 EXPORT_SYMBOL(lustre_msg_buf);
156 EXPORT_SYMBOL(lustre_msg_string);
157 EXPORT_SYMBOL(lustre_swab_buf);
158 EXPORT_SYMBOL(lustre_swab_reqbuf);
159 EXPORT_SYMBOL(lustre_swab_repbuf);
160 EXPORT_SYMBOL(lustre_swab_obdo);
161 EXPORT_SYMBOL(lustre_swab_obd_statfs);
162 EXPORT_SYMBOL(lustre_swab_obd_ioobj);
163 EXPORT_SYMBOL(lustre_swab_niobuf_remote);
164 EXPORT_SYMBOL(lustre_swab_ost_body);
165 EXPORT_SYMBOL(lustre_swab_ost_last_id);
166 EXPORT_SYMBOL(lustre_swab_ost_lvb);
167 EXPORT_SYMBOL(lustre_swab_mds_status_req);
168 EXPORT_SYMBOL(lustre_swab_mds_body);
169 EXPORT_SYMBOL(lustre_swab_obd_quotactl);
170 EXPORT_SYMBOL(lustre_swab_mds_rec_setattr);
171 EXPORT_SYMBOL(lustre_swab_mds_rec_create);
172 EXPORT_SYMBOL(lustre_swab_mds_rec_link);
173 EXPORT_SYMBOL(lustre_swab_mds_rec_unlink);
174 EXPORT_SYMBOL(lustre_swab_mds_rec_rename);
175 EXPORT_SYMBOL(lustre_swab_lov_desc);
176 EXPORT_SYMBOL(lustre_swab_lov_user_md);
177 EXPORT_SYMBOL(lustre_swab_lov_user_md_objects);
178 EXPORT_SYMBOL(lustre_swab_ldlm_res_id);
179 EXPORT_SYMBOL(lustre_swab_ldlm_policy_data);
180 EXPORT_SYMBOL(lustre_swab_ldlm_intent);
181 EXPORT_SYMBOL(lustre_swab_ldlm_resource_desc);
182 EXPORT_SYMBOL(lustre_swab_ldlm_lock_desc);
183 EXPORT_SYMBOL(lustre_swab_ldlm_request);
184 EXPORT_SYMBOL(lustre_swab_ldlm_reply);
185 EXPORT_SYMBOL(lustre_swab_ptlbd_op);
186 EXPORT_SYMBOL(lustre_swab_ptlbd_niob);
187 EXPORT_SYMBOL(lustre_swab_ptlbd_rsp);
188 EXPORT_SYMBOL(lustre_swab_qdata);
189 EXPORT_SYMBOL(lustre_swab_mgmt_ost_info);
190 EXPORT_SYMBOL(lustre_swab_mgmt_mds_info);
191
192 /* recover.c */
193 EXPORT_SYMBOL(ptlrpc_run_recovery_over_upcall);
194 EXPORT_SYMBOL(ptlrpc_run_failed_import_upcall);
195 EXPORT_SYMBOL(ptlrpc_disconnect_import);
196 EXPORT_SYMBOL(ptlrpc_resend);
197 EXPORT_SYMBOL(ptlrpc_wake_delayed);
198 EXPORT_SYMBOL(ptlrpc_set_import_active);
199 EXPORT_SYMBOL(ptlrpc_activate_import);
200 EXPORT_SYMBOL(ptlrpc_deactivate_import);
201 EXPORT_SYMBOL(ptlrpc_invalidate_import);
202 EXPORT_SYMBOL(ptlrpc_fail_import);
203 EXPORT_SYMBOL(ptlrpc_recover_import);
204
205 /* pinger.c */
206 EXPORT_SYMBOL(ptlrpc_pinger_add_import);
207 EXPORT_SYMBOL(ptlrpc_pinger_del_import);
208 EXPORT_SYMBOL(ptlrpc_pinger_sending_on_import);
209
210 /* ptlrpcd.c */
211 EXPORT_SYMBOL(ptlrpcd_addref);
212 EXPORT_SYMBOL(ptlrpcd_decref);
213 EXPORT_SYMBOL(ptlrpcd_add_req);
214 EXPORT_SYMBOL(ptlrpcd_wake);
215
216 /* llogd.c */
217 EXPORT_SYMBOL(llog_origin_handle_create);
218 EXPORT_SYMBOL(llog_origin_handle_next_block);
219 EXPORT_SYMBOL(llog_origin_handle_read_header);
220 EXPORT_SYMBOL(llog_origin_handle_close);
221 EXPORT_SYMBOL(llog_client_ops);
222 EXPORT_SYMBOL(llog_catinfo);
223
224 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
225 MODULE_DESCRIPTION("Lustre Request Processor and Lock Management");
226 MODULE_LICENSE("GPL");
227
228 module_init(ptlrpc_init);
229 module_exit(ptlrpc_exit);
230 #endif