blob: 4b947d5cafe284cd110fb303688630efdba62b94 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
Roland Dreier2a1d9b72005-08-10 23:03:10 -07003 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 */
33
34#include <linux/module.h>
35#include <linux/string.h>
36#include <linux/errno.h>
Ahmed S. Darwish9a6b0902007-02-06 18:07:25 +020037#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/slab.h>
39#include <linux/init.h>
Ingo Molnar95ed6442006-01-13 14:51:39 -080040#include <linux/mutex.h>
Yotam Kenneth9268f722015-07-30 17:50:15 +030041#include <linux/netdevice.h>
Roland Dreierb2cbae22011-05-20 11:46:11 -070042#include <rdma/rdma_netlink.h>
Matan Barak03db3a22015-07-30 18:33:26 +030043#include <rdma/ib_addr.h>
44#include <rdma/ib_cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include "core_priv.h"
47
48MODULE_AUTHOR("Roland Dreier");
49MODULE_DESCRIPTION("core kernel InfiniBand API");
50MODULE_LICENSE("Dual BSD/GPL");
51
52struct ib_client_data {
53 struct list_head list;
54 struct ib_client *client;
55 void * data;
Haggai Eran7c1eb452015-07-30 17:50:14 +030056 /* The device or client is going down. Do not call client or device
57 * callbacks other than remove(). */
58 bool going_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -080061struct workqueue_struct *ib_comp_wq;
Jack Morgenstein787f7742018-08-27 08:35:55 +030062struct workqueue_struct *ib_comp_unbound_wq;
Tejun Heof0626712010-10-19 15:24:36 +000063struct workqueue_struct *ib_wq;
64EXPORT_SYMBOL_GPL(ib_wq);
65
Haggai Eran5aa44bb2015-07-30 17:50:13 +030066/* The device_list and client_list contain devices and clients after their
67 * registration has completed, and the devices and clients are removed
68 * during unregistration. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static LIST_HEAD(device_list);
70static LIST_HEAD(client_list);
71
72/*
Haggai Eran5aa44bb2015-07-30 17:50:13 +030073 * device_mutex and lists_rwsem protect access to both device_list and
74 * client_list. device_mutex protects writer access by device and client
75 * registration / de-registration. lists_rwsem protects reader access to
76 * these lists. Iterators of these lists must lock it for read, while updates
77 * to the lists must be done with a write lock. A special case is when the
78 * device_mutex is locked. In this case locking the lists for read access is
79 * not necessary as the device_mutex implies it.
Haggai Eran7c1eb452015-07-30 17:50:14 +030080 *
81 * lists_rwsem also protects access to the client data list.
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 */
Ingo Molnar95ed6442006-01-13 14:51:39 -080083static DEFINE_MUTEX(device_mutex);
Haggai Eran5aa44bb2015-07-30 17:50:13 +030084static DECLARE_RWSEM(lists_rwsem);
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87static int ib_device_check_mandatory(struct ib_device *device)
88{
89#define IB_MANDATORY_FUNC(x) { offsetof(struct ib_device, x), #x }
90 static const struct {
91 size_t offset;
92 char *name;
93 } mandatory_table[] = {
94 IB_MANDATORY_FUNC(query_device),
95 IB_MANDATORY_FUNC(query_port),
96 IB_MANDATORY_FUNC(query_pkey),
97 IB_MANDATORY_FUNC(query_gid),
98 IB_MANDATORY_FUNC(alloc_pd),
99 IB_MANDATORY_FUNC(dealloc_pd),
100 IB_MANDATORY_FUNC(create_ah),
101 IB_MANDATORY_FUNC(destroy_ah),
102 IB_MANDATORY_FUNC(create_qp),
103 IB_MANDATORY_FUNC(modify_qp),
104 IB_MANDATORY_FUNC(destroy_qp),
105 IB_MANDATORY_FUNC(post_send),
106 IB_MANDATORY_FUNC(post_recv),
107 IB_MANDATORY_FUNC(create_cq),
108 IB_MANDATORY_FUNC(destroy_cq),
109 IB_MANDATORY_FUNC(poll_cq),
110 IB_MANDATORY_FUNC(req_notify_cq),
111 IB_MANDATORY_FUNC(get_dma_mr),
Ira Weiny77386132015-05-13 20:02:58 -0400112 IB_MANDATORY_FUNC(dereg_mr),
113 IB_MANDATORY_FUNC(get_port_immutable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 };
115 int i;
116
Ahmed S. Darwish9a6b0902007-02-06 18:07:25 +0200117 for (i = 0; i < ARRAY_SIZE(mandatory_table); ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 if (!*(void **) ((void *) device + mandatory_table[i].offset)) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530119 pr_warn("Device %s is missing mandatory function %s\n",
120 device->name, mandatory_table[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return -EINVAL;
122 }
123 }
124
125 return 0;
126}
127
128static struct ib_device *__ib_device_get_by_name(const char *name)
129{
130 struct ib_device *device;
131
132 list_for_each_entry(device, &device_list, core_list)
133 if (!strncmp(name, device->name, IB_DEVICE_NAME_MAX))
134 return device;
135
136 return NULL;
137}
138
139
140static int alloc_name(char *name)
141{
Roland Dreier65d470b2007-10-09 19:59:04 -0700142 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 char buf[IB_DEVICE_NAME_MAX];
144 struct ib_device *device;
145 int i;
146
Roland Dreier65d470b2007-10-09 19:59:04 -0700147 inuse = (unsigned long *) get_zeroed_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 if (!inuse)
149 return -ENOMEM;
150
151 list_for_each_entry(device, &device_list, core_list) {
152 if (!sscanf(device->name, name, &i))
153 continue;
154 if (i < 0 || i >= PAGE_SIZE * 8)
155 continue;
156 snprintf(buf, sizeof buf, name, i);
157 if (!strncmp(buf, device->name, IB_DEVICE_NAME_MAX))
158 set_bit(i, inuse);
159 }
160
161 i = find_first_zero_bit(inuse, PAGE_SIZE * 8);
162 free_page((unsigned long) inuse);
163 snprintf(buf, sizeof buf, name, i);
164
165 if (__ib_device_get_by_name(buf))
166 return -ENFILE;
167
168 strlcpy(name, buf, IB_DEVICE_NAME_MAX);
169 return 0;
170}
171
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600172static void ib_device_release(struct device *device)
173{
174 struct ib_device *dev = container_of(device, struct ib_device, dev);
175
Matan Barak03db3a22015-07-30 18:33:26 +0300176 ib_cache_release_one(dev);
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600177 kfree(dev->port_immutable);
178 kfree(dev);
179}
180
181static int ib_device_uevent(struct device *device,
182 struct kobj_uevent_env *env)
183{
184 struct ib_device *dev = container_of(device, struct ib_device, dev);
185
186 if (add_uevent_var(env, "NAME=%s", dev->name))
187 return -ENOMEM;
188
189 /*
190 * It would be nice to pass the node GUID with the event...
191 */
192
193 return 0;
194}
195
196static struct class ib_class = {
197 .name = "infiniband",
198 .dev_release = ib_device_release,
199 .dev_uevent = ib_device_uevent,
200};
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/**
203 * ib_alloc_device - allocate an IB device struct
204 * @size:size of structure to allocate
205 *
206 * Low-level drivers should use ib_alloc_device() to allocate &struct
207 * ib_device. @size is the size of the structure to be allocated,
208 * including any private data used by the low-level driver.
209 * ib_dealloc_device() must be used to free structures allocated with
210 * ib_alloc_device().
211 */
212struct ib_device *ib_alloc_device(size_t size)
213{
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600214 struct ib_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600216 if (WARN_ON(size < sizeof(struct ib_device)))
217 return NULL;
218
219 device = kzalloc(size, GFP_KERNEL);
220 if (!device)
221 return NULL;
222
223 device->dev.class = &ib_class;
224 device_initialize(&device->dev);
225
226 dev_set_drvdata(&device->dev, device);
227
228 INIT_LIST_HEAD(&device->event_handler_list);
229 spin_lock_init(&device->event_handler_lock);
230 spin_lock_init(&device->client_data_lock);
231 INIT_LIST_HEAD(&device->client_data_list);
232 INIT_LIST_HEAD(&device->port_list);
233
234 return device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236EXPORT_SYMBOL(ib_alloc_device);
237
238/**
239 * ib_dealloc_device - free an IB device struct
240 * @device:structure to free
241 *
242 * Free a structure allocated with ib_alloc_device().
243 */
244void ib_dealloc_device(struct ib_device *device)
245{
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600246 WARN_ON(device->reg_state != IB_DEV_UNREGISTERED &&
247 device->reg_state != IB_DEV_UNINITIALIZED);
Roland Dreier9206dff2009-02-25 13:27:46 -0800248 kobject_put(&device->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250EXPORT_SYMBOL(ib_dealloc_device);
251
252static int add_client_context(struct ib_device *device, struct ib_client *client)
253{
254 struct ib_client_data *context;
255 unsigned long flags;
256
257 context = kmalloc(sizeof *context, GFP_KERNEL);
258 if (!context) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530259 pr_warn("Couldn't allocate client context for %s/%s\n",
260 device->name, client->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return -ENOMEM;
262 }
263
264 context->client = client;
265 context->data = NULL;
Haggai Eran7c1eb452015-07-30 17:50:14 +0300266 context->going_down = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Haggai Eran7c1eb452015-07-30 17:50:14 +0300268 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 spin_lock_irqsave(&device->client_data_lock, flags);
270 list_add(&context->list, &device->client_data_list);
271 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300272 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 return 0;
275}
276
Ira Weiny337877a2015-06-06 14:38:29 -0400277static int verify_immutable(const struct ib_device *dev, u8 port)
278{
279 return WARN_ON(!rdma_cap_ib_mad(dev, port) &&
280 rdma_max_mad_size(dev, port) != 0);
281}
282
Ira Weiny77386132015-05-13 20:02:58 -0400283static int read_port_immutable(struct ib_device *device)
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300284{
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600285 int ret;
Ira Weiny77386132015-05-13 20:02:58 -0400286 u8 start_port = rdma_start_port(device);
287 u8 end_port = rdma_end_port(device);
288 u8 port;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300289
Ira Weiny77386132015-05-13 20:02:58 -0400290 /**
291 * device->port_immutable is indexed directly by the port number to make
292 * access to this data as efficient as possible.
293 *
294 * Therefore port_immutable is declared as a 1 based array with
295 * potential empty slots at the beginning.
296 */
297 device->port_immutable = kzalloc(sizeof(*device->port_immutable)
298 * (end_port + 1),
299 GFP_KERNEL);
300 if (!device->port_immutable)
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600301 return -ENOMEM;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300302
Ira Weiny77386132015-05-13 20:02:58 -0400303 for (port = start_port; port <= end_port; ++port) {
304 ret = device->get_port_immutable(device, port,
305 &device->port_immutable[port]);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300306 if (ret)
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600307 return ret;
Ira Weiny337877a2015-06-06 14:38:29 -0400308
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600309 if (verify_immutable(device, port))
310 return -EINVAL;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300311 }
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600312 return 0;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300313}
314
Ira Weiny5fa76c22016-06-15 02:21:56 -0400315void ib_get_device_fw_str(struct ib_device *dev, char *str, size_t str_len)
316{
317 if (dev->get_dev_fw_str)
318 dev->get_dev_fw_str(dev, str, str_len);
319 else
320 str[0] = '\0';
321}
322EXPORT_SYMBOL(ib_get_device_fw_str);
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324/**
325 * ib_register_device - Register an IB device with IB core
326 * @device:Device to register
327 *
328 * Low-level drivers use ib_register_device() to register their
329 * devices with the IB core. All registered clients will receive a
330 * callback for each device that is added. @device must be allocated
331 * with ib_alloc_device().
332 */
Ralph Campbell9a6edb62010-05-06 17:03:25 -0700333int ib_register_device(struct ib_device *device,
334 int (*port_callback)(struct ib_device *,
335 u8, struct kobject *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
337 int ret;
Doug Ledfordb8071ad2015-08-15 10:16:14 -0400338 struct ib_client *client;
Ira Weiny3e153a92015-12-18 10:59:44 +0200339 struct ib_udata uhw = {.outlen = 0, .inlen = 0};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Ingo Molnar95ed6442006-01-13 14:51:39 -0800341 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 if (strchr(device->name, '%')) {
344 ret = alloc_name(device->name);
345 if (ret)
346 goto out;
347 }
348
349 if (ib_device_check_mandatory(device)) {
350 ret = -EINVAL;
351 goto out;
352 }
353
Ira Weiny77386132015-05-13 20:02:58 -0400354 ret = read_port_immutable(device);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300355 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530356 pr_warn("Couldn't create per port immutable data %s\n",
357 device->name);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300358 goto out;
359 }
360
Matan Barak03db3a22015-07-30 18:33:26 +0300361 ret = ib_cache_setup_one(device);
362 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530363 pr_warn("Couldn't set up InfiniBand P_Key/GID cache\n");
Matan Barak03db3a22015-07-30 18:33:26 +0300364 goto out;
365 }
366
Ira Weiny3e153a92015-12-18 10:59:44 +0200367 memset(&device->attrs, 0, sizeof(device->attrs));
368 ret = device->query_device(device, &device->attrs, &uhw);
369 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530370 pr_warn("Couldn't query the device attributes\n");
Leon Romanovsky5adebafb2016-02-21 18:12:26 +0200371 ib_cache_cleanup_one(device);
Ira Weiny3e153a92015-12-18 10:59:44 +0200372 goto out;
373 }
374
Ralph Campbell9a6edb62010-05-06 17:03:25 -0700375 ret = ib_device_register_sysfs(device, port_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530377 pr_warn("Couldn't register device %s with driver model\n",
378 device->name);
Matan Barak03db3a22015-07-30 18:33:26 +0300379 ib_cache_cleanup_one(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 goto out;
381 }
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 device->reg_state = IB_DEV_REGISTERED;
384
Doug Ledfordb8071ad2015-08-15 10:16:14 -0400385 list_for_each_entry(client, &client_list, list)
386 if (client->add && !add_client_context(device, client))
387 client->add(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300389 down_write(&lists_rwsem);
390 list_add_tail(&device->core_list, &device_list);
391 up_write(&lists_rwsem);
392out:
Ingo Molnar95ed6442006-01-13 14:51:39 -0800393 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return ret;
395}
396EXPORT_SYMBOL(ib_register_device);
397
398/**
399 * ib_unregister_device - Unregister an IB device
400 * @device:Device to unregister
401 *
402 * Unregister an IB device. All clients will receive a remove callback.
403 */
404void ib_unregister_device(struct ib_device *device)
405{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 struct ib_client_data *context, *tmp;
407 unsigned long flags;
408
Ingo Molnar95ed6442006-01-13 14:51:39 -0800409 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300411 down_write(&lists_rwsem);
412 list_del(&device->core_list);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300413 spin_lock_irqsave(&device->client_data_lock, flags);
414 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
415 context->going_down = true;
416 spin_unlock_irqrestore(&device->client_data_lock, flags);
417 downgrade_write(&lists_rwsem);
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300418
Haggai Eran7c1eb452015-07-30 17:50:14 +0300419 list_for_each_entry_safe(context, tmp, &device->client_data_list,
420 list) {
421 if (context->client->remove)
422 context->client->remove(device, context->data);
423 }
424 up_read(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Ingo Molnar95ed6442006-01-13 14:51:39 -0800426 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Roland Dreier9206dff2009-02-25 13:27:46 -0800428 ib_device_unregister_sysfs(device);
Matan Barak03db3a22015-07-30 18:33:26 +0300429 ib_cache_cleanup_one(device);
Roland Dreier9206dff2009-02-25 13:27:46 -0800430
Haggai Eran7c1eb452015-07-30 17:50:14 +0300431 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 spin_lock_irqsave(&device->client_data_lock, flags);
433 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
434 kfree(context);
435 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300436 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 device->reg_state = IB_DEV_UNREGISTERED;
439}
440EXPORT_SYMBOL(ib_unregister_device);
441
442/**
443 * ib_register_client - Register an IB client
444 * @client:Client to register
445 *
446 * Upper level users of the IB drivers can use ib_register_client() to
447 * register callbacks for IB device addition and removal. When an IB
448 * device is added, each registered client's add method will be called
449 * (in the order the clients were registered), and when a device is
450 * removed, each client's remove method will be called (in the reverse
451 * order that clients were registered). In addition, when
452 * ib_register_client() is called, the client will receive an add
453 * callback for all devices already registered.
454 */
455int ib_register_client(struct ib_client *client)
456{
457 struct ib_device *device;
458
Ingo Molnar95ed6442006-01-13 14:51:39 -0800459 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 list_for_each_entry(device, &device_list, core_list)
462 if (client->add && !add_client_context(device, client))
463 client->add(device);
464
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300465 down_write(&lists_rwsem);
466 list_add_tail(&client->list, &client_list);
467 up_write(&lists_rwsem);
468
Ingo Molnar95ed6442006-01-13 14:51:39 -0800469 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 return 0;
472}
473EXPORT_SYMBOL(ib_register_client);
474
475/**
476 * ib_unregister_client - Unregister an IB client
477 * @client:Client to unregister
478 *
479 * Upper level users use ib_unregister_client() to remove their client
480 * registration. When ib_unregister_client() is called, the client
481 * will receive a remove callback for each IB device still registered.
482 */
483void ib_unregister_client(struct ib_client *client)
484{
485 struct ib_client_data *context, *tmp;
486 struct ib_device *device;
487 unsigned long flags;
488
Ingo Molnar95ed6442006-01-13 14:51:39 -0800489 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300491 down_write(&lists_rwsem);
492 list_del(&client->list);
493 up_write(&lists_rwsem);
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 list_for_each_entry(device, &device_list, core_list) {
Haggai Eran7c1eb452015-07-30 17:50:14 +0300496 struct ib_client_data *found_context = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Haggai Eran7c1eb452015-07-30 17:50:14 +0300498 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 spin_lock_irqsave(&device->client_data_lock, flags);
500 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
501 if (context->client == client) {
Haggai Eran7c1eb452015-07-30 17:50:14 +0300502 context->going_down = true;
503 found_context = context;
504 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300507 up_write(&lists_rwsem);
508
509 if (client->remove)
510 client->remove(device, found_context ?
511 found_context->data : NULL);
512
513 if (!found_context) {
514 pr_warn("No client context found for %s/%s\n",
515 device->name, client->name);
516 continue;
517 }
518
519 down_write(&lists_rwsem);
520 spin_lock_irqsave(&device->client_data_lock, flags);
521 list_del(&found_context->list);
522 kfree(found_context);
523 spin_unlock_irqrestore(&device->client_data_lock, flags);
524 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Ingo Molnar95ed6442006-01-13 14:51:39 -0800527 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529EXPORT_SYMBOL(ib_unregister_client);
530
531/**
532 * ib_get_client_data - Get IB client context
533 * @device:Device to get context for
534 * @client:Client to get context for
535 *
536 * ib_get_client_data() returns client context set with
537 * ib_set_client_data().
538 */
539void *ib_get_client_data(struct ib_device *device, struct ib_client *client)
540{
541 struct ib_client_data *context;
542 void *ret = NULL;
543 unsigned long flags;
544
545 spin_lock_irqsave(&device->client_data_lock, flags);
546 list_for_each_entry(context, &device->client_data_list, list)
547 if (context->client == client) {
548 ret = context->data;
549 break;
550 }
551 spin_unlock_irqrestore(&device->client_data_lock, flags);
552
553 return ret;
554}
555EXPORT_SYMBOL(ib_get_client_data);
556
557/**
Krishna Kumar9cd330d2006-09-22 15:22:58 -0700558 * ib_set_client_data - Set IB client context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 * @device:Device to set context for
560 * @client:Client to set context for
561 * @data:Context to set
562 *
563 * ib_set_client_data() sets client context that can be retrieved with
564 * ib_get_client_data().
565 */
566void ib_set_client_data(struct ib_device *device, struct ib_client *client,
567 void *data)
568{
569 struct ib_client_data *context;
570 unsigned long flags;
571
572 spin_lock_irqsave(&device->client_data_lock, flags);
573 list_for_each_entry(context, &device->client_data_list, list)
574 if (context->client == client) {
575 context->data = data;
576 goto out;
577 }
578
Parav Panditaba25a3e2016-03-02 00:50:29 +0530579 pr_warn("No client context found for %s/%s\n",
580 device->name, client->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582out:
583 spin_unlock_irqrestore(&device->client_data_lock, flags);
584}
585EXPORT_SYMBOL(ib_set_client_data);
586
587/**
588 * ib_register_event_handler - Register an IB event handler
589 * @event_handler:Handler to register
590 *
591 * ib_register_event_handler() registers an event handler that will be
592 * called back when asynchronous IB events occur (as defined in
593 * chapter 11 of the InfiniBand Architecture Specification). This
594 * callback may occur in interrupt context.
595 */
596int ib_register_event_handler (struct ib_event_handler *event_handler)
597{
598 unsigned long flags;
599
600 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
601 list_add_tail(&event_handler->list,
602 &event_handler->device->event_handler_list);
603 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
604
605 return 0;
606}
607EXPORT_SYMBOL(ib_register_event_handler);
608
609/**
610 * ib_unregister_event_handler - Unregister an event handler
611 * @event_handler:Handler to unregister
612 *
613 * Unregister an event handler registered with
614 * ib_register_event_handler().
615 */
616int ib_unregister_event_handler(struct ib_event_handler *event_handler)
617{
618 unsigned long flags;
619
620 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
621 list_del(&event_handler->list);
622 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
623
624 return 0;
625}
626EXPORT_SYMBOL(ib_unregister_event_handler);
627
628/**
629 * ib_dispatch_event - Dispatch an asynchronous event
630 * @event:Event to dispatch
631 *
632 * Low-level drivers must call ib_dispatch_event() to dispatch the
633 * event to all registered event handlers when an asynchronous event
634 * occurs.
635 */
636void ib_dispatch_event(struct ib_event *event)
637{
638 unsigned long flags;
639 struct ib_event_handler *handler;
640
641 spin_lock_irqsave(&event->device->event_handler_lock, flags);
642
643 list_for_each_entry(handler, &event->device->event_handler_list, list)
644 handler->handler(handler, event);
645
646 spin_unlock_irqrestore(&event->device->event_handler_lock, flags);
647}
648EXPORT_SYMBOL(ib_dispatch_event);
649
650/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 * ib_query_port - Query IB port attributes
652 * @device:Device to query
653 * @port_num:Port number to query
654 * @port_attr:Port attributes
655 *
656 * ib_query_port() returns the attributes of a port through the
657 * @port_attr pointer.
658 */
659int ib_query_port(struct ib_device *device,
660 u8 port_num,
661 struct ib_port_attr *port_attr)
662{
Eli Cohenfad61ad2016-03-11 22:58:36 +0200663 union ib_gid gid;
664 int err;
665
Ira Weiny0cf18d72015-05-13 20:02:55 -0400666 if (port_num < rdma_start_port(device) || port_num > rdma_end_port(device))
Roland Dreier116c0072005-10-03 09:32:33 -0700667 return -EINVAL;
668
Eli Cohenfad61ad2016-03-11 22:58:36 +0200669 memset(port_attr, 0, sizeof(*port_attr));
670 err = device->query_port(device, port_num, port_attr);
671 if (err || port_attr->subnet_prefix)
672 return err;
673
Eli Cohend7012462016-06-04 15:15:18 +0300674 if (rdma_port_get_link_layer(device, port_num) != IB_LINK_LAYER_INFINIBAND)
675 return 0;
676
Eli Cohenfad61ad2016-03-11 22:58:36 +0200677 err = ib_query_gid(device, port_num, 0, &gid, NULL);
678 if (err)
679 return err;
680
681 port_attr->subnet_prefix = be64_to_cpu(gid.global.subnet_prefix);
682 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684EXPORT_SYMBOL(ib_query_port);
685
686/**
687 * ib_query_gid - Get GID table entry
688 * @device:Device to query
689 * @port_num:Port number to query
690 * @index:GID table index to query
691 * @gid:Returned GID
Matan Barak55ee3ab2015-10-15 18:38:45 +0300692 * @attr: Returned GID attributes related to this GID index (only in RoCE).
693 * NULL means ignore.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 *
695 * ib_query_gid() fetches the specified GID table entry.
696 */
697int ib_query_gid(struct ib_device *device,
Matan Barak55ee3ab2015-10-15 18:38:45 +0300698 u8 port_num, int index, union ib_gid *gid,
699 struct ib_gid_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Matan Barak03db3a22015-07-30 18:33:26 +0300701 if (rdma_cap_roce_gid_table(device, port_num))
Matan Barak55ee3ab2015-10-15 18:38:45 +0300702 return ib_get_cached_gid(device, port_num, index, gid, attr);
703
704 if (attr)
705 return -EINVAL;
Matan Barak03db3a22015-07-30 18:33:26 +0300706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return device->query_gid(device, port_num, index, gid);
708}
709EXPORT_SYMBOL(ib_query_gid);
710
711/**
Matan Barak03db3a22015-07-30 18:33:26 +0300712 * ib_enum_roce_netdev - enumerate all RoCE ports
713 * @ib_dev : IB device we want to query
714 * @filter: Should we call the callback?
715 * @filter_cookie: Cookie passed to filter
716 * @cb: Callback to call for each found RoCE ports
717 * @cookie: Cookie passed back to the callback
718 *
719 * Enumerates all of the physical RoCE ports of ib_dev
720 * which are related to netdevice and calls callback() on each
721 * device for which filter() function returns non zero.
722 */
723void ib_enum_roce_netdev(struct ib_device *ib_dev,
724 roce_netdev_filter filter,
725 void *filter_cookie,
726 roce_netdev_callback cb,
727 void *cookie)
728{
729 u8 port;
730
731 for (port = rdma_start_port(ib_dev); port <= rdma_end_port(ib_dev);
732 port++)
733 if (rdma_protocol_roce(ib_dev, port)) {
734 struct net_device *idev = NULL;
735
736 if (ib_dev->get_netdev)
737 idev = ib_dev->get_netdev(ib_dev, port);
738
739 if (idev &&
740 idev->reg_state >= NETREG_UNREGISTERED) {
741 dev_put(idev);
742 idev = NULL;
743 }
744
745 if (filter(ib_dev, port, idev, filter_cookie))
746 cb(ib_dev, port, idev, cookie);
747
748 if (idev)
749 dev_put(idev);
750 }
751}
752
753/**
754 * ib_enum_all_roce_netdevs - enumerate all RoCE devices
755 * @filter: Should we call the callback?
756 * @filter_cookie: Cookie passed to filter
757 * @cb: Callback to call for each found RoCE ports
758 * @cookie: Cookie passed back to the callback
759 *
760 * Enumerates all RoCE devices' physical ports which are related
761 * to netdevices and calls callback() on each device for which
762 * filter() function returns non zero.
763 */
764void ib_enum_all_roce_netdevs(roce_netdev_filter filter,
765 void *filter_cookie,
766 roce_netdev_callback cb,
767 void *cookie)
768{
769 struct ib_device *dev;
770
771 down_read(&lists_rwsem);
772 list_for_each_entry(dev, &device_list, core_list)
773 ib_enum_roce_netdev(dev, filter, filter_cookie, cb, cookie);
774 up_read(&lists_rwsem);
775}
776
777/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 * ib_query_pkey - Get P_Key table entry
779 * @device:Device to query
780 * @port_num:Port number to query
781 * @index:P_Key table index to query
782 * @pkey:Returned P_Key
783 *
784 * ib_query_pkey() fetches the specified P_Key table entry.
785 */
786int ib_query_pkey(struct ib_device *device,
787 u8 port_num, u16 index, u16 *pkey)
788{
789 return device->query_pkey(device, port_num, index, pkey);
790}
791EXPORT_SYMBOL(ib_query_pkey);
792
793/**
794 * ib_modify_device - Change IB device attributes
795 * @device:Device to modify
796 * @device_modify_mask:Mask of attributes to change
797 * @device_modify:New attribute values
798 *
799 * ib_modify_device() changes a device's attributes as specified by
800 * the @device_modify_mask and @device_modify structure.
801 */
802int ib_modify_device(struct ib_device *device,
803 int device_modify_mask,
804 struct ib_device_modify *device_modify)
805{
Bart Van Assche10e1b542011-06-18 16:35:42 +0000806 if (!device->modify_device)
807 return -ENOSYS;
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return device->modify_device(device, device_modify_mask,
810 device_modify);
811}
812EXPORT_SYMBOL(ib_modify_device);
813
814/**
815 * ib_modify_port - Modifies the attributes for the specified port.
816 * @device: The device to modify.
817 * @port_num: The number of the port to modify.
818 * @port_modify_mask: Mask used to specify which attributes of the port
819 * to change.
820 * @port_modify: New attribute values for the port.
821 *
822 * ib_modify_port() changes a port's attributes as specified by the
823 * @port_modify_mask and @port_modify structure.
824 */
825int ib_modify_port(struct ib_device *device,
826 u8 port_num, int port_modify_mask,
827 struct ib_port_modify *port_modify)
828{
Bart Van Assche10e1b542011-06-18 16:35:42 +0000829 if (!device->modify_port)
830 return -ENOSYS;
831
Ira Weiny0cf18d72015-05-13 20:02:55 -0400832 if (port_num < rdma_start_port(device) || port_num > rdma_end_port(device))
Roland Dreier116c0072005-10-03 09:32:33 -0700833 return -EINVAL;
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return device->modify_port(device, port_num, port_modify_mask,
836 port_modify);
837}
838EXPORT_SYMBOL(ib_modify_port);
839
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300840/**
841 * ib_find_gid - Returns the port number and GID table index where
842 * a specified GID value occurs.
843 * @device: The device to query.
844 * @gid: The GID value to search for.
Matan Barakb39ffa12015-12-23 14:56:47 +0200845 * @gid_type: Type of GID.
Matan Barak55ee3ab2015-10-15 18:38:45 +0300846 * @ndev: The ndev related to the GID to search for.
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300847 * @port_num: The port number of the device where the GID value was found.
848 * @index: The index into the GID table where the GID was found. This
849 * parameter may be NULL.
850 */
851int ib_find_gid(struct ib_device *device, union ib_gid *gid,
Matan Barakb39ffa12015-12-23 14:56:47 +0200852 enum ib_gid_type gid_type, struct net_device *ndev,
853 u8 *port_num, u16 *index)
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300854{
855 union ib_gid tmp_gid;
856 int ret, port, i;
857
Ira Weiny0cf18d72015-05-13 20:02:55 -0400858 for (port = rdma_start_port(device); port <= rdma_end_port(device); ++port) {
Matan Barak03db3a22015-07-30 18:33:26 +0300859 if (rdma_cap_roce_gid_table(device, port)) {
Matan Barakb39ffa12015-12-23 14:56:47 +0200860 if (!ib_find_cached_gid_by_port(device, gid, gid_type, port,
Matan Barakd300ec52015-10-15 18:38:46 +0300861 ndev, index)) {
Matan Barak03db3a22015-07-30 18:33:26 +0300862 *port_num = port;
863 return 0;
Dan Carpenter98d25af2015-08-18 12:22:10 +0300864 }
Matan Barak03db3a22015-07-30 18:33:26 +0300865 }
866
Matan Barakb39ffa12015-12-23 14:56:47 +0200867 if (gid_type != IB_GID_TYPE_IB)
868 continue;
869
Ira Weiny77386132015-05-13 20:02:58 -0400870 for (i = 0; i < device->port_immutable[port].gid_tbl_len; ++i) {
Matan Barak55ee3ab2015-10-15 18:38:45 +0300871 ret = ib_query_gid(device, port, i, &tmp_gid, NULL);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300872 if (ret)
873 return ret;
874 if (!memcmp(&tmp_gid, gid, sizeof *gid)) {
875 *port_num = port;
876 if (index)
877 *index = i;
878 return 0;
879 }
880 }
881 }
882
883 return -ENOENT;
884}
885EXPORT_SYMBOL(ib_find_gid);
886
887/**
888 * ib_find_pkey - Returns the PKey table index where a specified
889 * PKey value occurs.
890 * @device: The device to query.
891 * @port_num: The port number of the device to search for the PKey.
892 * @pkey: The PKey value to search for.
893 * @index: The index into the PKey table where the PKey was found.
894 */
895int ib_find_pkey(struct ib_device *device,
896 u8 port_num, u16 pkey, u16 *index)
897{
898 int ret, i;
899 u16 tmp_pkey;
Jack Morgensteinff7166c2012-08-03 08:40:38 +0000900 int partial_ix = -1;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300901
Ira Weiny77386132015-05-13 20:02:58 -0400902 for (i = 0; i < device->port_immutable[port_num].pkey_tbl_len; ++i) {
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300903 ret = ib_query_pkey(device, port_num, i, &tmp_pkey);
904 if (ret)
905 return ret;
Moni Shoua36026ec2007-07-23 10:07:42 +0300906 if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) {
Jack Morgensteinff7166c2012-08-03 08:40:38 +0000907 /* if there is full-member pkey take it.*/
908 if (tmp_pkey & 0x8000) {
909 *index = i;
910 return 0;
911 }
912 if (partial_ix < 0)
913 partial_ix = i;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300914 }
915 }
916
Jack Morgensteinff7166c2012-08-03 08:40:38 +0000917 /*no full-member, if exists take the limited*/
918 if (partial_ix >= 0) {
919 *index = partial_ix;
920 return 0;
921 }
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300922 return -ENOENT;
923}
924EXPORT_SYMBOL(ib_find_pkey);
925
Yotam Kenneth9268f722015-07-30 17:50:15 +0300926/**
927 * ib_get_net_dev_by_params() - Return the appropriate net_dev
928 * for a received CM request
929 * @dev: An RDMA device on which the request has been received.
930 * @port: Port number on the RDMA device.
931 * @pkey: The Pkey the request came on.
932 * @gid: A GID that the net_dev uses to communicate.
933 * @addr: Contains the IP address that the request specified as its
934 * destination.
935 */
936struct net_device *ib_get_net_dev_by_params(struct ib_device *dev,
937 u8 port,
938 u16 pkey,
939 const union ib_gid *gid,
940 const struct sockaddr *addr)
941{
942 struct net_device *net_dev = NULL;
943 struct ib_client_data *context;
944
945 if (!rdma_protocol_ib(dev, port))
946 return NULL;
947
948 down_read(&lists_rwsem);
949
950 list_for_each_entry(context, &dev->client_data_list, list) {
951 struct ib_client *client = context->client;
952
953 if (context->going_down)
954 continue;
955
956 if (client->get_net_dev_by_params) {
957 net_dev = client->get_net_dev_by_params(dev, port, pkey,
958 gid, addr,
959 context->data);
960 if (net_dev)
961 break;
962 }
963 }
964
965 up_read(&lists_rwsem);
966
967 return net_dev;
968}
969EXPORT_SYMBOL(ib_get_net_dev_by_params);
970
Mark Bloch735c6312016-05-19 17:12:35 +0300971static struct ibnl_client_cbs ibnl_ls_cb_table[] = {
972 [RDMA_NL_LS_OP_RESOLVE] = {
973 .dump = ib_nl_handle_resolve_resp,
974 .module = THIS_MODULE },
975 [RDMA_NL_LS_OP_SET_TIMEOUT] = {
976 .dump = ib_nl_handle_set_timeout,
977 .module = THIS_MODULE },
Mark Blochae43f822016-05-19 17:12:36 +0300978 [RDMA_NL_LS_OP_IP_RESOLVE] = {
979 .dump = ib_nl_handle_ip_res_resp,
980 .module = THIS_MODULE },
Mark Bloch735c6312016-05-19 17:12:35 +0300981};
982
983static int ib_add_ibnl_clients(void)
984{
985 return ibnl_add_client(RDMA_NL_LS, ARRAY_SIZE(ibnl_ls_cb_table),
986 ibnl_ls_cb_table);
987}
988
989static void ib_remove_ibnl_clients(void)
990{
991 ibnl_remove_client(RDMA_NL_LS);
992}
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994static int __init ib_core_init(void)
995{
996 int ret;
997
Tejun Heof0626712010-10-19 15:24:36 +0000998 ib_wq = alloc_workqueue("infiniband", 0, 0);
999 if (!ib_wq)
1000 return -ENOMEM;
1001
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001002 ib_comp_wq = alloc_workqueue("ib-comp-wq",
Sagi Grimberg1899f672017-03-08 22:03:17 +02001003 WQ_HIGHPRI | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001004 if (!ib_comp_wq) {
1005 ret = -ENOMEM;
1006 goto err;
1007 }
1008
Jack Morgenstein787f7742018-08-27 08:35:55 +03001009 ib_comp_unbound_wq =
1010 alloc_workqueue("ib-comp-unb-wq",
1011 WQ_UNBOUND | WQ_HIGHPRI | WQ_MEM_RECLAIM |
1012 WQ_SYSFS, WQ_UNBOUND_MAX_ACTIVE);
1013 if (!ib_comp_unbound_wq) {
1014 ret = -ENOMEM;
1015 goto err_comp;
1016 }
1017
Jason Gunthorpe55aeed02015-08-04 15:23:34 -06001018 ret = class_register(&ib_class);
Nir Muchtarfd75c782011-05-20 11:46:10 -07001019 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +05301020 pr_warn("Couldn't create InfiniBand device class\n");
Jack Morgenstein787f7742018-08-27 08:35:55 +03001021 goto err_comp_unbound;
Nir Muchtarfd75c782011-05-20 11:46:10 -07001022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Roland Dreierb2cbae22011-05-20 11:46:11 -07001024 ret = ibnl_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +05301026 pr_warn("Couldn't init IB netlink interface\n");
Nir Muchtarfd75c782011-05-20 11:46:10 -07001027 goto err_sysfs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
1029
Leon Romanovskye3f20f02016-05-19 17:12:31 +03001030 ret = addr_init();
1031 if (ret) {
1032 pr_warn("Could't init IB address resolution\n");
1033 goto err_ibnl;
1034 }
1035
Mark Bloch4c2cb422016-05-19 17:12:32 +03001036 ret = ib_mad_init();
1037 if (ret) {
1038 pr_warn("Couldn't init IB MAD\n");
1039 goto err_addr;
1040 }
1041
Mark Blochc2e49c92016-05-19 17:12:33 +03001042 ret = ib_sa_init();
1043 if (ret) {
1044 pr_warn("Couldn't init SA\n");
1045 goto err_mad;
1046 }
1047
Dan Carpenterda1f8572016-05-31 19:05:56 +03001048 ret = ib_add_ibnl_clients();
1049 if (ret) {
Mark Bloch735c6312016-05-19 17:12:35 +03001050 pr_warn("Couldn't register ibnl clients\n");
1051 goto err_sa;
1052 }
1053
Matan Barak03db3a22015-07-30 18:33:26 +03001054 ib_cache_setup();
Roland Dreierb2cbae22011-05-20 11:46:11 -07001055
Nir Muchtarfd75c782011-05-20 11:46:10 -07001056 return 0;
1057
Mark Bloch735c6312016-05-19 17:12:35 +03001058err_sa:
1059 ib_sa_cleanup();
Mark Blochc2e49c92016-05-19 17:12:33 +03001060err_mad:
1061 ib_mad_cleanup();
Mark Bloch4c2cb422016-05-19 17:12:32 +03001062err_addr:
1063 addr_cleanup();
Leon Romanovskye3f20f02016-05-19 17:12:31 +03001064err_ibnl:
1065 ibnl_cleanup();
Nir Muchtarfd75c782011-05-20 11:46:10 -07001066err_sysfs:
Jason Gunthorpe55aeed02015-08-04 15:23:34 -06001067 class_unregister(&ib_class);
Jack Morgenstein787f7742018-08-27 08:35:55 +03001068err_comp_unbound:
1069 destroy_workqueue(ib_comp_unbound_wq);
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001070err_comp:
1071 destroy_workqueue(ib_comp_wq);
Nir Muchtarfd75c782011-05-20 11:46:10 -07001072err:
1073 destroy_workqueue(ib_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return ret;
1075}
1076
1077static void __exit ib_core_cleanup(void)
1078{
1079 ib_cache_cleanup();
Mark Bloch735c6312016-05-19 17:12:35 +03001080 ib_remove_ibnl_clients();
Mark Blochc2e49c92016-05-19 17:12:33 +03001081 ib_sa_cleanup();
Mark Bloch4c2cb422016-05-19 17:12:32 +03001082 ib_mad_cleanup();
Leon Romanovskye3f20f02016-05-19 17:12:31 +03001083 addr_cleanup();
Roland Dreierb2cbae22011-05-20 11:46:11 -07001084 ibnl_cleanup();
Jason Gunthorpe55aeed02015-08-04 15:23:34 -06001085 class_unregister(&ib_class);
Jack Morgenstein787f7742018-08-27 08:35:55 +03001086 destroy_workqueue(ib_comp_unbound_wq);
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001087 destroy_workqueue(ib_comp_wq);
Roland Dreierf7c6a7b2007-03-04 16:15:11 -08001088 /* Make sure that any pending umem accounting work is done. */
Tejun Heof0626712010-10-19 15:24:36 +00001089 destroy_workqueue(ib_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090}
1091
1092module_init(ib_core_init);
1093module_exit(ib_core_cleanup);