Whamcloud - gitweb
land b_hd_sec onto HEAD:
[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_start_bulk_transfer);
87 EXPORT_SYMBOL(ptlrpc_abort_bulk);
88 EXPORT_SYMBOL(ptlrpc_register_bulk);
89 EXPORT_SYMBOL(ptlrpc_unregister_bulk);
90 EXPORT_SYMBOL(ptlrpc_send_reply);
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_do_rawrpc);
96
97 /* client.c */
98 EXPORT_SYMBOL(ptlrpc_init_client);
99 EXPORT_SYMBOL(ptlrpc_cleanup_client);
100 EXPORT_SYMBOL(ptlrpc_uuid_to_connection);
101 EXPORT_SYMBOL(ptlrpc_queue_wait);
102 EXPORT_SYMBOL(ptlrpc_replay_req);
103 EXPORT_SYMBOL(ptlrpc_restart_req);
104 EXPORT_SYMBOL(ptlrpc_prep_req);
105 EXPORT_SYMBOL(ptlrpc_free_req);
106 EXPORT_SYMBOL(ptlrpc_unregister_reply);
107 EXPORT_SYMBOL(ptlrpc_req_finished);
108 EXPORT_SYMBOL(ptlrpc_req_finished_with_imp_lock);
109 EXPORT_SYMBOL(ptlrpc_request_addref);
110 EXPORT_SYMBOL(ptlrpc_prep_bulk_imp);
111 EXPORT_SYMBOL(ptlrpc_prep_bulk_exp);
112 EXPORT_SYMBOL(ptlrpc_free_bulk);
113 EXPORT_SYMBOL(ptlrpc_prep_bulk_page);
114 EXPORT_SYMBOL(ptlrpc_abort_inflight);
115 EXPORT_SYMBOL(ptlrpc_retain_replayable_request);
116 EXPORT_SYMBOL(ptlrpc_next_xid);
117
118 EXPORT_SYMBOL(ptlrpc_prep_set);
119 EXPORT_SYMBOL(ptlrpc_set_add_req);
120 EXPORT_SYMBOL(ptlrpc_set_add_new_req);
121 EXPORT_SYMBOL(ptlrpc_set_destroy);
122 EXPORT_SYMBOL(ptlrpc_set_next_timeout);
123 EXPORT_SYMBOL(ptlrpc_check_set);
124 EXPORT_SYMBOL(ptlrpc_set_wait);
125 EXPORT_SYMBOL(ptlrpc_expired_set);
126 EXPORT_SYMBOL(ptlrpc_interrupted_set);
127 EXPORT_SYMBOL(ptlrpc_mark_interrupted);
128
129 /* import.c */
130 EXPORT_SYMBOL(ptlrpc_deactivate_import);
131 EXPORT_SYMBOL(ptlrpc_invalidate_import);
132 EXPORT_SYMBOL(ptlrpc_activate_import);
133 EXPORT_SYMBOL(ptlrpc_fail_import);
134 EXPORT_SYMBOL(ptlrpc_disconnect_import);
135
136 /* service.c */
137 EXPORT_SYMBOL(ptlrpc_require_repack);
138 EXPORT_SYMBOL(ptlrpc_save_lock);
139 EXPORT_SYMBOL(ptlrpc_save_llog_lock);
140 EXPORT_SYMBOL(ptlrpc_schedule_difficult_reply);
141 EXPORT_SYMBOL(ptlrpc_commit_replies);
142 EXPORT_SYMBOL(ptlrpc_init_svc);
143 EXPORT_SYMBOL(ptlrpc_stop_all_threads);
144 EXPORT_SYMBOL(ptlrpc_start_n_threads);
145 EXPORT_SYMBOL(ptlrpc_start_thread);
146 EXPORT_SYMBOL(ptlrpc_unregister_service);
147 EXPORT_SYMBOL(ptlrpc_daemonize);
148
149 /* pack_generic.c */
150 EXPORT_SYMBOL(lustre_msg_swabbed);
151 EXPORT_SYMBOL(lustre_msg_check_version);
152 EXPORT_SYMBOL(lustre_secdesc_size);
153 EXPORT_SYMBOL(lustre_pack_secdesc);
154 EXPORT_SYMBOL(lustre_pack_request);
155 EXPORT_SYMBOL(lustre_pack_reply);
156 EXPORT_SYMBOL(lustre_free_reply_state);
157 EXPORT_SYMBOL(lustre_msg_size);
158 EXPORT_SYMBOL(lustre_init_msg);
159 EXPORT_SYMBOL(lustre_unpack_msg);
160 EXPORT_SYMBOL(lustre_msg_buf);
161 EXPORT_SYMBOL(lustre_msg_string);
162 EXPORT_SYMBOL(lustre_swab_buf);
163 EXPORT_SYMBOL(lustre_swab_reqbuf);
164 EXPORT_SYMBOL(lustre_swab_repbuf);
165 EXPORT_SYMBOL(lustre_swab_obdo);
166 EXPORT_SYMBOL(lustre_swab_obd_statfs);
167 EXPORT_SYMBOL(lustre_swab_obd_ioobj);
168 EXPORT_SYMBOL(lustre_swab_niobuf_remote);
169 EXPORT_SYMBOL(lustre_swab_ost_body);
170 EXPORT_SYMBOL(lustre_swab_ost_last_id);
171 EXPORT_SYMBOL(lustre_swab_ost_lvb);
172 EXPORT_SYMBOL(lustre_swab_generic_32s);
173 EXPORT_SYMBOL(lustre_swab_lustre_id);
174 EXPORT_SYMBOL(lustre_swab_lustre_stc);
175 EXPORT_SYMBOL(lustre_swab_lustre_fid);
176 EXPORT_SYMBOL(lustre_swab_mds_status_req);
177 EXPORT_SYMBOL(lustre_swab_mds_secdesc);
178 EXPORT_SYMBOL(lustre_swab_mds_body);
179 EXPORT_SYMBOL(lustre_swab_mds_rec_setattr);
180 EXPORT_SYMBOL(lustre_swab_mds_rec_create);
181 EXPORT_SYMBOL(lustre_swab_mds_rec_link);
182 EXPORT_SYMBOL(lustre_swab_mds_rec_unlink);
183 EXPORT_SYMBOL(lustre_swab_mds_rec_rename);
184 EXPORT_SYMBOL(lustre_swab_lov_desc);
185 EXPORT_SYMBOL(lustre_swab_ldlm_res_id);
186 EXPORT_SYMBOL(lustre_swab_ldlm_policy_data);
187 EXPORT_SYMBOL(lustre_swab_ldlm_intent);
188 EXPORT_SYMBOL(lustre_swab_ldlm_resource_desc);
189 EXPORT_SYMBOL(lustre_swab_ldlm_lock_desc);
190 EXPORT_SYMBOL(lustre_swab_ldlm_request);
191 EXPORT_SYMBOL(lustre_swab_ldlm_reply);
192 EXPORT_SYMBOL(lustre_swab_ptlbd_op);
193 EXPORT_SYMBOL(lustre_swab_ptlbd_niob);
194 EXPORT_SYMBOL(lustre_swab_ptlbd_rsp);
195 EXPORT_SYMBOL(mdc_create_pack);
196 EXPORT_SYMBOL(mdc_setattr_pack);
197 EXPORT_SYMBOL(mdc_unlink_pack);
198 EXPORT_SYMBOL(mdc_link_pack);
199 EXPORT_SYMBOL(mdc_rename_pack);
200
201 /* recover.c */
202 EXPORT_SYMBOL(ptlrpc_run_recovery_over_upcall);
203 EXPORT_SYMBOL(ptlrpc_run_failed_import_upcall);
204 EXPORT_SYMBOL(ptlrpc_resend);
205 EXPORT_SYMBOL(ptlrpc_wake_delayed);
206 EXPORT_SYMBOL(ptlrpc_set_import_active);
207 EXPORT_SYMBOL(ptlrpc_fail_export);
208 EXPORT_SYMBOL(ptlrpc_recover_import);
209
210 /* pinger.c */
211 EXPORT_SYMBOL(ptlrpc_pinger_add_import);
212 EXPORT_SYMBOL(ptlrpc_pinger_del_import);
213 EXPORT_SYMBOL(ptlrpc_pinger_sending_on_import);
214
215 /* ptlrpcd.c */
216 EXPORT_SYMBOL(ptlrpcd_addref);
217 EXPORT_SYMBOL(ptlrpcd_decref);
218 EXPORT_SYMBOL(ptlrpcd_add_req);
219 EXPORT_SYMBOL(ptlrpcd_wake);
220
221 /* lproc_ptlrpc.c */
222 EXPORT_SYMBOL(ptlrpc_lprocfs_register_obd);
223 EXPORT_SYMBOL(ptlrpc_lprocfs_unregister_obd);
224
225 /* llogd.c */
226 EXPORT_SYMBOL(llog_origin_handle_open);
227 EXPORT_SYMBOL(llog_origin_handle_prev_block);
228 EXPORT_SYMBOL(llog_origin_handle_next_block);
229 EXPORT_SYMBOL(llog_origin_handle_read_header);
230 EXPORT_SYMBOL(llog_origin_handle_close);
231 EXPORT_SYMBOL(llog_client_ops);
232 EXPORT_SYMBOL(llog_catinfo);
233
234 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
235 MODULE_DESCRIPTION("Lustre Request Processor and Lock Management");
236 MODULE_LICENSE("GPL");
237
238 module_init(ptlrpc_init);
239 module_exit(ptlrpc_exit);
240 #endif