Whamcloud - gitweb
LU-1866 osd: ancillary work for initial OI scrub
[fs/lustre-release.git] / lustre / ptlrpc / ptlrpc_module.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #define DEBUG_SUBSYSTEM S_RPC
38
39 #ifndef __KERNEL__
40 # include <liblustre.h>
41 #endif
42
43 #include <obd_support.h>
44 #include <obd_class.h>
45 #include <lustre_net.h>
46 #include <lustre_req_layout.h>
47
48 #include "ptlrpc_internal.h"
49
50 extern spinlock_t ptlrpc_last_xid_lock;
51 #if RS_DEBUG
52 extern spinlock_t ptlrpc_rs_debug_lock;
53 #endif
54 extern struct mutex pinger_mutex;
55 extern struct mutex ptlrpcd_mutex;
56
57 __init int ptlrpc_init(void)
58 {
59         int rc, cleanup_phase = 0;
60         ENTRY;
61
62         lustre_assert_wire_constants();
63 #if RS_DEBUG
64         spin_lock_init(&ptlrpc_rs_debug_lock);
65 #endif
66         mutex_init(&ptlrpc_all_services_mutex);
67         mutex_init(&pinger_mutex);
68         mutex_init(&ptlrpcd_mutex);
69         ptlrpc_init_xid();
70
71         rc = req_layout_init();
72         if (rc)
73                 RETURN(rc);
74
75         rc = ptlrpc_hr_init();
76         if (rc)
77                 RETURN(rc);
78
79         cleanup_phase = 1;
80
81         rc = ptlrpc_init_portals();
82         if (rc)
83                 GOTO(cleanup, rc);
84         cleanup_phase = 2;
85
86         rc = ptlrpc_connection_init();
87         if (rc)
88                 GOTO(cleanup, rc);
89         cleanup_phase = 3;
90
91         ptlrpc_put_connection_superhack = ptlrpc_connection_put;
92
93         rc = ptlrpc_start_pinger();
94         if (rc)
95                 GOTO(cleanup, rc);
96         cleanup_phase = 4;
97
98         rc = ldlm_init();
99         if (rc)
100                 GOTO(cleanup, rc);
101         cleanup_phase = 5;
102
103         rc = sptlrpc_init();
104         if (rc)
105                 GOTO(cleanup, rc);
106
107         cleanup_phase = 6;
108         rc = llog_recov_init();
109         if (rc)
110                 GOTO(cleanup, rc);
111
112         cleanup_phase = 7;
113         rc = ptlrpc_nrs_init();
114         if (rc)
115                 GOTO(cleanup, rc);
116
117 #ifdef __KERNEL__
118         cleanup_phase = 8;
119         rc = tgt_mod_init();
120         if (rc)
121                 GOTO(cleanup, rc);
122 #endif
123         RETURN(0);
124
125 cleanup:
126         switch(cleanup_phase) {
127 #ifdef __KERNEL__
128         case 8:
129                 ptlrpc_nrs_fini();
130 #endif
131         case 7:
132                 llog_recov_fini();
133         case 6:
134                 sptlrpc_fini();
135         case 5:
136                 ldlm_exit();
137         case 4:
138                 ptlrpc_stop_pinger();
139         case 3:
140                 ptlrpc_connection_fini();
141         case 2:
142                 ptlrpc_exit_portals();
143         case 1:
144                 ptlrpc_hr_fini();
145                 req_layout_fini();
146         default: ;
147         }
148
149         return rc;
150 }
151
152 #ifdef __KERNEL__
153 static void __exit ptlrpc_exit(void)
154 {
155         tgt_mod_exit();
156         ptlrpc_nrs_fini();
157         llog_recov_fini();
158         sptlrpc_fini();
159         ldlm_exit();
160         ptlrpc_stop_pinger();
161         ptlrpc_exit_portals();
162         ptlrpc_hr_fini();
163         ptlrpc_connection_fini();
164 }
165
166 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
167 MODULE_DESCRIPTION("Lustre Request Processor and Lock Management");
168 MODULE_LICENSE("GPL");
169
170 cfs_module(ptlrpc, "1.0.0", ptlrpc_init, ptlrpc_exit);
171 #endif