Whamcloud - gitweb
LU-9679 lnet: use LIST_HEAD() for local lists.
[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  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #define DEBUG_SUBSYSTEM S_RPC
34
35
36 #include <obd_support.h>
37 #include <obd_class.h>
38 #include <lustre_net.h>
39 #include <lustre_req_layout.h>
40
41 #include "ptlrpc_internal.h"
42
43 static __init int ptlrpc_init(void)
44 {
45         int rc;
46
47         ENTRY;
48
49         lustre_assert_wire_constants();
50 #if RS_DEBUG
51         spin_lock_init(&ptlrpc_rs_debug_lock);
52 #endif
53         INIT_LIST_HEAD(&ptlrpc_all_services);
54         mutex_init(&ptlrpc_all_services_mutex);
55         mutex_init(&pinger_mutex);
56         mutex_init(&ptlrpcd_mutex);
57         ptlrpc_init_xid();
58
59         rc = req_layout_init();
60         if (rc)
61                 RETURN(rc);
62
63         rc = tgt_mod_init();
64         if (rc)
65                 GOTO(err_layout, rc);
66
67         rc = ptlrpc_hr_init();
68         if (rc)
69                 GOTO(err_tgt, rc);
70
71         rc = ptlrpc_request_cache_init();
72         if (rc)
73                 GOTO(err_hr, rc);
74
75         rc = ptlrpc_init_portals();
76         if (rc)
77                 GOTO(err_cache, rc);
78
79         rc = ptlrpc_connection_init();
80         if (rc)
81                 GOTO(err_portals, rc);
82
83         ptlrpc_put_connection_superhack = ptlrpc_connection_put;
84
85         rc = ptlrpc_start_pinger();
86         if (rc)
87                 GOTO(err_conn, rc);
88
89         rc = ldlm_init();
90         if (rc)
91                 GOTO(err_pinger, rc);
92
93         rc = sptlrpc_init();
94         if (rc)
95                 GOTO(err_ldlm, rc);
96
97         rc = ptlrpc_nrs_init();
98         if (rc)
99                 GOTO(err_sptlrpc, rc);
100
101         rc = nodemap_mod_init();
102         if (rc)
103                 GOTO(err_nrs, rc);
104
105         RETURN(0);
106 err_nrs:
107         ptlrpc_nrs_fini();
108 err_sptlrpc:
109         sptlrpc_fini();
110 err_ldlm:
111         ldlm_exit();
112 err_pinger:
113         ptlrpc_stop_pinger();
114 err_conn:
115         ptlrpc_connection_fini();
116 err_portals:
117         ptlrpc_exit_portals();
118 err_cache:
119         ptlrpc_request_cache_fini();
120 err_hr:
121         ptlrpc_hr_fini();
122 err_tgt:
123         tgt_mod_exit();
124 err_layout:
125         req_layout_fini();
126         return rc;
127 }
128
129 static void __exit ptlrpc_exit(void)
130 {
131         nodemap_mod_exit();
132         ptlrpc_nrs_fini();
133         sptlrpc_fini();
134         ldlm_exit();
135         ptlrpc_stop_pinger();
136         ptlrpc_exit_portals();
137         ptlrpc_request_cache_fini();
138         ptlrpc_hr_fini();
139         ptlrpc_connection_fini();
140         tgt_mod_exit();
141         req_layout_fini();
142 }
143
144 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
145 MODULE_DESCRIPTION("Lustre Request Processor and Lock Management");
146 MODULE_VERSION(LUSTRE_VERSION_STRING);
147 MODULE_LICENSE("GPL");
148
149 module_init(ptlrpc_init);
150 module_exit(ptlrpc_exit);