Whamcloud - gitweb
f7630ef9d4a3732ed5164b0f435125a1c7e37535
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2014, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  */
31
32 #define DEBUG_SUBSYSTEM S_RPC
33
34
35 #include <obd_support.h>
36 #include <obd_class.h>
37 #include <lustre_net.h>
38 #include <lustre_req_layout.h>
39
40 #include "ptlrpc_internal.h"
41
42 static __init int ptlrpc_init(void)
43 {
44         int rc;
45
46         ENTRY;
47
48         lustre_assert_wire_constants();
49 #if RS_DEBUG
50         spin_lock_init(&ptlrpc_rs_debug_lock);
51 #endif
52         mutex_init(&ptlrpc_all_services_mutex);
53         mutex_init(&pinger_mutex);
54         mutex_init(&ptlrpcd_mutex);
55         ptlrpc_init_xid();
56
57         rc = req_layout_init();
58         if (rc)
59                 RETURN(rc);
60
61         rc = tgt_mod_init();
62         if (rc)
63                 GOTO(err_layout, rc);
64
65         rc = ptlrpc_hr_init();
66         if (rc)
67                 GOTO(err_tgt, rc);
68
69         rc = ptlrpc_request_cache_init();
70         if (rc)
71                 GOTO(err_hr, rc);
72
73         rc = ptlrpc_init_portals();
74         if (rc)
75                 GOTO(err_cache, rc);
76
77         rc = ptlrpc_connection_init();
78         if (rc)
79                 GOTO(err_portals, rc);
80
81         rc = ptlrpc_start_pinger();
82         if (rc)
83                 GOTO(err_conn, rc);
84
85         rc = ldlm_init();
86         if (rc)
87                 GOTO(err_pinger, rc);
88
89         rc = sptlrpc_init();
90         if (rc)
91                 GOTO(err_ldlm, rc);
92
93         rc = ptlrpc_nrs_init();
94         if (rc)
95                 GOTO(err_sptlrpc, rc);
96
97         rc = nodemap_mod_init();
98         if (rc)
99                 GOTO(err_nrs, rc);
100
101         RETURN(0);
102 err_nrs:
103         ptlrpc_nrs_fini();
104 err_sptlrpc:
105         sptlrpc_fini();
106 err_ldlm:
107         ldlm_exit();
108 err_pinger:
109         ptlrpc_stop_pinger();
110 err_conn:
111         ptlrpc_connection_fini();
112 err_portals:
113         ptlrpc_exit_portals();
114 err_cache:
115         ptlrpc_request_cache_fini();
116 err_hr:
117         ptlrpc_hr_fini();
118 err_tgt:
119         tgt_mod_exit();
120 err_layout:
121         req_layout_fini();
122         return rc;
123 }
124
125 static void __exit ptlrpc_exit(void)
126 {
127         nodemap_mod_exit();
128         ptlrpc_nrs_fini();
129         sptlrpc_fini();
130         ldlm_exit();
131         ptlrpc_stop_pinger();
132         ptlrpc_exit_portals();
133         ptlrpc_request_cache_fini();
134         ptlrpc_hr_fini();
135         ptlrpc_connection_fini();
136         tgt_mod_exit();
137         req_layout_fini();
138 }
139
140 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
141 MODULE_DESCRIPTION("Lustre Request Processor and Lock Management");
142 MODULE_VERSION(LUSTRE_VERSION_STRING);
143 MODULE_LICENSE("GPL");
144
145 module_init(ptlrpc_init);
146 module_exit(ptlrpc_exit);