Whamcloud - gitweb
LU-9679 lustre: make ptlrpc_connection_put() static inline
[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         mutex_init(&ptlrpc_all_services_mutex);
54         mutex_init(&pinger_mutex);
55         mutex_init(&ptlrpcd_mutex);
56         ptlrpc_init_xid();
57
58         rc = req_layout_init();
59         if (rc)
60                 RETURN(rc);
61
62         rc = tgt_mod_init();
63         if (rc)
64                 GOTO(err_layout, rc);
65
66         rc = ptlrpc_hr_init();
67         if (rc)
68                 GOTO(err_tgt, rc);
69
70         rc = ptlrpc_request_cache_init();
71         if (rc)
72                 GOTO(err_hr, rc);
73
74         rc = ptlrpc_init_portals();
75         if (rc)
76                 GOTO(err_cache, rc);
77
78         rc = ptlrpc_connection_init();
79         if (rc)
80                 GOTO(err_portals, rc);
81
82         rc = ptlrpc_start_pinger();
83         if (rc)
84                 GOTO(err_conn, rc);
85
86         rc = ldlm_init();
87         if (rc)
88                 GOTO(err_pinger, rc);
89
90         rc = sptlrpc_init();
91         if (rc)
92                 GOTO(err_ldlm, rc);
93
94         rc = ptlrpc_nrs_init();
95         if (rc)
96                 GOTO(err_sptlrpc, rc);
97
98         rc = nodemap_mod_init();
99         if (rc)
100                 GOTO(err_nrs, rc);
101
102         RETURN(0);
103 err_nrs:
104         ptlrpc_nrs_fini();
105 err_sptlrpc:
106         sptlrpc_fini();
107 err_ldlm:
108         ldlm_exit();
109 err_pinger:
110         ptlrpc_stop_pinger();
111 err_conn:
112         ptlrpc_connection_fini();
113 err_portals:
114         ptlrpc_exit_portals();
115 err_cache:
116         ptlrpc_request_cache_fini();
117 err_hr:
118         ptlrpc_hr_fini();
119 err_tgt:
120         tgt_mod_exit();
121 err_layout:
122         req_layout_fini();
123         return rc;
124 }
125
126 static void __exit ptlrpc_exit(void)
127 {
128         nodemap_mod_exit();
129         ptlrpc_nrs_fini();
130         sptlrpc_fini();
131         ldlm_exit();
132         ptlrpc_stop_pinger();
133         ptlrpc_exit_portals();
134         ptlrpc_request_cache_fini();
135         ptlrpc_hr_fini();
136         ptlrpc_connection_fini();
137         tgt_mod_exit();
138         req_layout_fini();
139 }
140
141 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
142 MODULE_DESCRIPTION("Lustre Request Processor and Lock Management");
143 MODULE_VERSION(LUSTRE_VERSION_STRING);
144 MODULE_LICENSE("GPL");
145
146 module_init(ptlrpc_init);
147 module_exit(ptlrpc_exit);