Whamcloud - gitweb
LU-10467 ptlrpc: convert final users of LWI_TIMEOUT_INTERVAL
[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         ptlrpc_put_connection_superhack = ptlrpc_connection_put;
83
84         rc = ptlrpc_start_pinger();
85         if (rc)
86                 GOTO(err_conn, rc);
87
88         rc = ldlm_init();
89         if (rc)
90                 GOTO(err_pinger, rc);
91
92         rc = sptlrpc_init();
93         if (rc)
94                 GOTO(err_ldlm, rc);
95
96         rc = ptlrpc_nrs_init();
97         if (rc)
98                 GOTO(err_sptlrpc, rc);
99
100         rc = nodemap_mod_init();
101         if (rc)
102                 GOTO(err_nrs, rc);
103
104         RETURN(0);
105 err_nrs:
106         ptlrpc_nrs_fini();
107 err_sptlrpc:
108         sptlrpc_fini();
109 err_ldlm:
110         ldlm_exit();
111 err_pinger:
112         ptlrpc_stop_pinger();
113 err_conn:
114         ptlrpc_connection_fini();
115 err_portals:
116         ptlrpc_exit_portals();
117 err_cache:
118         ptlrpc_request_cache_fini();
119 err_hr:
120         ptlrpc_hr_fini();
121 err_tgt:
122         tgt_mod_exit();
123 err_layout:
124         req_layout_fini();
125         return rc;
126 }
127
128 static void __exit ptlrpc_exit(void)
129 {
130         nodemap_mod_exit();
131         ptlrpc_nrs_fini();
132         sptlrpc_fini();
133         ldlm_exit();
134         ptlrpc_stop_pinger();
135         ptlrpc_exit_portals();
136         ptlrpc_request_cache_fini();
137         ptlrpc_hr_fini();
138         ptlrpc_connection_fini();
139         tgt_mod_exit();
140         req_layout_fini();
141 }
142
143 MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
144 MODULE_DESCRIPTION("Lustre Request Processor and Lock Management");
145 MODULE_VERSION(LUSTRE_VERSION_STRING);
146 MODULE_LICENSE("GPL");
147
148 module_init(ptlrpc_init);
149 module_exit(ptlrpc_exit);