blob: addf869045cc9e129e42cea3019c0a72f57d916d [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;
Tejun Heof0626712010-10-19 15:24:36 +000062struct workqueue_struct *ib_wq;
63EXPORT_SYMBOL_GPL(ib_wq);
64
Haggai Eran5aa44bb2015-07-30 17:50:13 +030065/* The device_list and client_list contain devices and clients after their
66 * registration has completed, and the devices and clients are removed
67 * during unregistration. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static LIST_HEAD(device_list);
69static LIST_HEAD(client_list);
70
71/*
Haggai Eran5aa44bb2015-07-30 17:50:13 +030072 * device_mutex and lists_rwsem protect access to both device_list and
73 * client_list. device_mutex protects writer access by device and client
74 * registration / de-registration. lists_rwsem protects reader access to
75 * these lists. Iterators of these lists must lock it for read, while updates
76 * to the lists must be done with a write lock. A special case is when the
77 * device_mutex is locked. In this case locking the lists for read access is
78 * not necessary as the device_mutex implies it.
Haggai Eran7c1eb452015-07-30 17:50:14 +030079 *
80 * lists_rwsem also protects access to the client data list.
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 */
Ingo Molnar95ed6442006-01-13 14:51:39 -080082static DEFINE_MUTEX(device_mutex);
Haggai Eran5aa44bb2015-07-30 17:50:13 +030083static DECLARE_RWSEM(lists_rwsem);
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86static int ib_device_check_mandatory(struct ib_device *device)
87{
88#define IB_MANDATORY_FUNC(x) { offsetof(struct ib_device, x), #x }
89 static const struct {
90 size_t offset;
91 char *name;
92 } mandatory_table[] = {
93 IB_MANDATORY_FUNC(query_device),
94 IB_MANDATORY_FUNC(query_port),
95 IB_MANDATORY_FUNC(query_pkey),
96 IB_MANDATORY_FUNC(query_gid),
97 IB_MANDATORY_FUNC(alloc_pd),
98 IB_MANDATORY_FUNC(dealloc_pd),
99 IB_MANDATORY_FUNC(create_ah),
100 IB_MANDATORY_FUNC(destroy_ah),
101 IB_MANDATORY_FUNC(create_qp),
102 IB_MANDATORY_FUNC(modify_qp),
103 IB_MANDATORY_FUNC(destroy_qp),
104 IB_MANDATORY_FUNC(post_send),
105 IB_MANDATORY_FUNC(post_recv),
106 IB_MANDATORY_FUNC(create_cq),
107 IB_MANDATORY_FUNC(destroy_cq),
108 IB_MANDATORY_FUNC(poll_cq),
109 IB_MANDATORY_FUNC(req_notify_cq),
110 IB_MANDATORY_FUNC(get_dma_mr),
Ira Weiny77386132015-05-13 20:02:58 -0400111 IB_MANDATORY_FUNC(dereg_mr),
112 IB_MANDATORY_FUNC(get_port_immutable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 };
114 int i;
115
Ahmed S. Darwish9a6b0902007-02-06 18:07:25 +0200116 for (i = 0; i < ARRAY_SIZE(mandatory_table); ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 if (!*(void **) ((void *) device + mandatory_table[i].offset)) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530118 pr_warn("Device %s is missing mandatory function %s\n",
119 device->name, mandatory_table[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return -EINVAL;
121 }
122 }
123
124 return 0;
125}
126
127static struct ib_device *__ib_device_get_by_name(const char *name)
128{
129 struct ib_device *device;
130
131 list_for_each_entry(device, &device_list, core_list)
132 if (!strncmp(name, device->name, IB_DEVICE_NAME_MAX))
133 return device;
134
135 return NULL;
136}
137
138
139static int alloc_name(char *name)
140{
Roland Dreier65d470b2007-10-09 19:59:04 -0700141 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 char buf[IB_DEVICE_NAME_MAX];
143 struct ib_device *device;
144 int i;
145
Roland Dreier65d470b2007-10-09 19:59:04 -0700146 inuse = (unsigned long *) get_zeroed_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (!inuse)
148 return -ENOMEM;
149
150 list_for_each_entry(device, &device_list, core_list) {
151 if (!sscanf(device->name, name, &i))
152 continue;
153 if (i < 0 || i >= PAGE_SIZE * 8)
154 continue;
155 snprintf(buf, sizeof buf, name, i);
156 if (!strncmp(buf, device->name, IB_DEVICE_NAME_MAX))
157 set_bit(i, inuse);
158 }
159
160 i = find_first_zero_bit(inuse, PAGE_SIZE * 8);
161 free_page((unsigned long) inuse);
162 snprintf(buf, sizeof buf, name, i);
163
164 if (__ib_device_get_by_name(buf))
165 return -ENFILE;
166
167 strlcpy(name, buf, IB_DEVICE_NAME_MAX);
168 return 0;
169}
170
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600171static void ib_device_release(struct device *device)
172{
173 struct ib_device *dev = container_of(device, struct ib_device, dev);
174
Matan Barak03db3a22015-07-30 18:33:26 +0300175 ib_cache_release_one(dev);
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600176 kfree(dev->port_immutable);
177 kfree(dev);
178}
179
180static int ib_device_uevent(struct device *device,
181 struct kobj_uevent_env *env)
182{
183 struct ib_device *dev = container_of(device, struct ib_device, dev);
184
185 if (add_uevent_var(env, "NAME=%s", dev->name))
186 return -ENOMEM;
187
188 /*
189 * It would be nice to pass the node GUID with the event...
190 */
191
192 return 0;
193}
194
195static struct class ib_class = {
196 .name = "infiniband",
197 .dev_release = ib_device_release,
198 .dev_uevent = ib_device_uevent,
199};
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201/**
202 * ib_alloc_device - allocate an IB device struct
203 * @size:size of structure to allocate
204 *
205 * Low-level drivers should use ib_alloc_device() to allocate &struct
206 * ib_device. @size is the size of the structure to be allocated,
207 * including any private data used by the low-level driver.
208 * ib_dealloc_device() must be used to free structures allocated with
209 * ib_alloc_device().
210 */
211struct ib_device *ib_alloc_device(size_t size)
212{
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600213 struct ib_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600215 if (WARN_ON(size < sizeof(struct ib_device)))
216 return NULL;
217
218 device = kzalloc(size, GFP_KERNEL);
219 if (!device)
220 return NULL;
221
222 device->dev.class = &ib_class;
223 device_initialize(&device->dev);
224
225 dev_set_drvdata(&device->dev, device);
226
227 INIT_LIST_HEAD(&device->event_handler_list);
228 spin_lock_init(&device->event_handler_lock);
229 spin_lock_init(&device->client_data_lock);
230 INIT_LIST_HEAD(&device->client_data_list);
231 INIT_LIST_HEAD(&device->port_list);
232
233 return device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235EXPORT_SYMBOL(ib_alloc_device);
236
237/**
238 * ib_dealloc_device - free an IB device struct
239 * @device:structure to free
240 *
241 * Free a structure allocated with ib_alloc_device().
242 */
243void ib_dealloc_device(struct ib_device *device)
244{
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600245 WARN_ON(device->reg_state != IB_DEV_UNREGISTERED &&
246 device->reg_state != IB_DEV_UNINITIALIZED);
Roland Dreier9206dff2009-02-25 13:27:46 -0800247 kobject_put(&device->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249EXPORT_SYMBOL(ib_dealloc_device);
250
251static int add_client_context(struct ib_device *device, struct ib_client *client)
252{
253 struct ib_client_data *context;
254 unsigned long flags;
255
256 context = kmalloc(sizeof *context, GFP_KERNEL);
Leon Romanovskya0b34552016-11-03 16:44:10 +0200257 if (!context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 context->client = client;
261 context->data = NULL;
Haggai Eran7c1eb452015-07-30 17:50:14 +0300262 context->going_down = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Haggai Eran7c1eb452015-07-30 17:50:14 +0300264 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 spin_lock_irqsave(&device->client_data_lock, flags);
266 list_add(&context->list, &device->client_data_list);
267 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300268 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 return 0;
271}
272
Ira Weiny337877a2015-06-06 14:38:29 -0400273static int verify_immutable(const struct ib_device *dev, u8 port)
274{
275 return WARN_ON(!rdma_cap_ib_mad(dev, port) &&
276 rdma_max_mad_size(dev, port) != 0);
277}
278
Ira Weiny77386132015-05-13 20:02:58 -0400279static int read_port_immutable(struct ib_device *device)
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300280{
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600281 int ret;
Ira Weiny77386132015-05-13 20:02:58 -0400282 u8 start_port = rdma_start_port(device);
283 u8 end_port = rdma_end_port(device);
284 u8 port;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300285
Ira Weiny77386132015-05-13 20:02:58 -0400286 /**
287 * device->port_immutable is indexed directly by the port number to make
288 * access to this data as efficient as possible.
289 *
290 * Therefore port_immutable is declared as a 1 based array with
291 * potential empty slots at the beginning.
292 */
293 device->port_immutable = kzalloc(sizeof(*device->port_immutable)
294 * (end_port + 1),
295 GFP_KERNEL);
296 if (!device->port_immutable)
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600297 return -ENOMEM;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300298
Ira Weiny77386132015-05-13 20:02:58 -0400299 for (port = start_port; port <= end_port; ++port) {
300 ret = device->get_port_immutable(device, port,
301 &device->port_immutable[port]);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300302 if (ret)
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600303 return ret;
Ira Weiny337877a2015-06-06 14:38:29 -0400304
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600305 if (verify_immutable(device, port))
306 return -EINVAL;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300307 }
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600308 return 0;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300309}
310
Ira Weiny5fa76c22016-06-15 02:21:56 -0400311void ib_get_device_fw_str(struct ib_device *dev, char *str, size_t str_len)
312{
313 if (dev->get_dev_fw_str)
314 dev->get_dev_fw_str(dev, str, str_len);
315 else
316 str[0] = '\0';
317}
318EXPORT_SYMBOL(ib_get_device_fw_str);
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320/**
321 * ib_register_device - Register an IB device with IB core
322 * @device:Device to register
323 *
324 * Low-level drivers use ib_register_device() to register their
325 * devices with the IB core. All registered clients will receive a
326 * callback for each device that is added. @device must be allocated
327 * with ib_alloc_device().
328 */
Ralph Campbell9a6edb62010-05-06 17:03:25 -0700329int ib_register_device(struct ib_device *device,
330 int (*port_callback)(struct ib_device *,
331 u8, struct kobject *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 int ret;
Doug Ledfordb8071ad2015-08-15 10:16:14 -0400334 struct ib_client *client;
Ira Weiny3e153a92015-12-18 10:59:44 +0200335 struct ib_udata uhw = {.outlen = 0, .inlen = 0};
Bart Van Assche99db9492017-01-20 13:04:36 -0800336 struct device *parent = device->dev.parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Bart Van Assche99db9492017-01-20 13:04:36 -0800338 WARN_ON_ONCE(!parent);
Bart Van Assche0957c292017-03-07 22:56:53 +0000339 WARN_ON_ONCE(device->dma_device);
340 if (device->dev.dma_ops) {
341 /*
342 * The caller provided custom DMA operations. Copy the
343 * DMA-related fields that are used by e.g. dma_alloc_coherent()
344 * into device->dev.
345 */
346 device->dma_device = &device->dev;
347 if (!device->dev.dma_mask)
348 device->dev.dma_mask = parent->dma_mask;
349 if (!device->dev.coherent_dma_mask)
350 device->dev.coherent_dma_mask =
351 parent->coherent_dma_mask;
352 } else {
353 /*
354 * The caller did not provide custom DMA operations. Use the
355 * DMA mapping operations of the parent device.
356 */
357 device->dma_device = parent;
358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Ingo Molnar95ed6442006-01-13 14:51:39 -0800360 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 if (strchr(device->name, '%')) {
363 ret = alloc_name(device->name);
364 if (ret)
365 goto out;
366 }
367
368 if (ib_device_check_mandatory(device)) {
369 ret = -EINVAL;
370 goto out;
371 }
372
Ira Weiny77386132015-05-13 20:02:58 -0400373 ret = read_port_immutable(device);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300374 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530375 pr_warn("Couldn't create per port immutable data %s\n",
376 device->name);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300377 goto out;
378 }
379
Matan Barak03db3a22015-07-30 18:33:26 +0300380 ret = ib_cache_setup_one(device);
381 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530382 pr_warn("Couldn't set up InfiniBand P_Key/GID cache\n");
Matan Barak03db3a22015-07-30 18:33:26 +0300383 goto out;
384 }
385
Parav Pandit43579b52017-01-10 00:02:14 +0000386 ret = ib_device_register_rdmacg(device);
387 if (ret) {
388 pr_warn("Couldn't register device with rdma cgroup\n");
389 ib_cache_cleanup_one(device);
390 goto out;
391 }
392
Ira Weiny3e153a92015-12-18 10:59:44 +0200393 memset(&device->attrs, 0, sizeof(device->attrs));
394 ret = device->query_device(device, &device->attrs, &uhw);
395 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530396 pr_warn("Couldn't query the device attributes\n");
Parav Pandit43579b52017-01-10 00:02:14 +0000397 ib_device_unregister_rdmacg(device);
Leon Romanovsky5adebafb2016-02-21 18:12:26 +0200398 ib_cache_cleanup_one(device);
Ira Weiny3e153a92015-12-18 10:59:44 +0200399 goto out;
400 }
401
Ralph Campbell9a6edb62010-05-06 17:03:25 -0700402 ret = ib_device_register_sysfs(device, port_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530404 pr_warn("Couldn't register device %s with driver model\n",
405 device->name);
Parav Pandit43579b52017-01-10 00:02:14 +0000406 ib_device_unregister_rdmacg(device);
Matan Barak03db3a22015-07-30 18:33:26 +0300407 ib_cache_cleanup_one(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 goto out;
409 }
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 device->reg_state = IB_DEV_REGISTERED;
412
Doug Ledfordb8071ad2015-08-15 10:16:14 -0400413 list_for_each_entry(client, &client_list, list)
414 if (client->add && !add_client_context(device, client))
415 client->add(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300417 down_write(&lists_rwsem);
418 list_add_tail(&device->core_list, &device_list);
419 up_write(&lists_rwsem);
420out:
Ingo Molnar95ed6442006-01-13 14:51:39 -0800421 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return ret;
423}
424EXPORT_SYMBOL(ib_register_device);
425
426/**
427 * ib_unregister_device - Unregister an IB device
428 * @device:Device to unregister
429 *
430 * Unregister an IB device. All clients will receive a remove callback.
431 */
432void ib_unregister_device(struct ib_device *device)
433{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 struct ib_client_data *context, *tmp;
435 unsigned long flags;
436
Ingo Molnar95ed6442006-01-13 14:51:39 -0800437 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300439 down_write(&lists_rwsem);
440 list_del(&device->core_list);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300441 spin_lock_irqsave(&device->client_data_lock, flags);
442 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
443 context->going_down = true;
444 spin_unlock_irqrestore(&device->client_data_lock, flags);
445 downgrade_write(&lists_rwsem);
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300446
Haggai Eran7c1eb452015-07-30 17:50:14 +0300447 list_for_each_entry_safe(context, tmp, &device->client_data_list,
448 list) {
449 if (context->client->remove)
450 context->client->remove(device, context->data);
451 }
452 up_read(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Ingo Molnar95ed6442006-01-13 14:51:39 -0800454 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Parav Pandit43579b52017-01-10 00:02:14 +0000456 ib_device_unregister_rdmacg(device);
Roland Dreier9206dff2009-02-25 13:27:46 -0800457 ib_device_unregister_sysfs(device);
Matan Barak03db3a22015-07-30 18:33:26 +0300458 ib_cache_cleanup_one(device);
Roland Dreier9206dff2009-02-25 13:27:46 -0800459
Haggai Eran7c1eb452015-07-30 17:50:14 +0300460 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 spin_lock_irqsave(&device->client_data_lock, flags);
462 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
463 kfree(context);
464 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300465 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 device->reg_state = IB_DEV_UNREGISTERED;
468}
469EXPORT_SYMBOL(ib_unregister_device);
470
471/**
472 * ib_register_client - Register an IB client
473 * @client:Client to register
474 *
475 * Upper level users of the IB drivers can use ib_register_client() to
476 * register callbacks for IB device addition and removal. When an IB
477 * device is added, each registered client's add method will be called
478 * (in the order the clients were registered), and when a device is
479 * removed, each client's remove method will be called (in the reverse
480 * order that clients were registered). In addition, when
481 * ib_register_client() is called, the client will receive an add
482 * callback for all devices already registered.
483 */
484int ib_register_client(struct ib_client *client)
485{
486 struct ib_device *device;
487
Ingo Molnar95ed6442006-01-13 14:51:39 -0800488 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 list_for_each_entry(device, &device_list, core_list)
491 if (client->add && !add_client_context(device, client))
492 client->add(device);
493
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300494 down_write(&lists_rwsem);
495 list_add_tail(&client->list, &client_list);
496 up_write(&lists_rwsem);
497
Ingo Molnar95ed6442006-01-13 14:51:39 -0800498 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 return 0;
501}
502EXPORT_SYMBOL(ib_register_client);
503
504/**
505 * ib_unregister_client - Unregister an IB client
506 * @client:Client to unregister
507 *
508 * Upper level users use ib_unregister_client() to remove their client
509 * registration. When ib_unregister_client() is called, the client
510 * will receive a remove callback for each IB device still registered.
511 */
512void ib_unregister_client(struct ib_client *client)
513{
514 struct ib_client_data *context, *tmp;
515 struct ib_device *device;
516 unsigned long flags;
517
Ingo Molnar95ed6442006-01-13 14:51:39 -0800518 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300520 down_write(&lists_rwsem);
521 list_del(&client->list);
522 up_write(&lists_rwsem);
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 list_for_each_entry(device, &device_list, core_list) {
Haggai Eran7c1eb452015-07-30 17:50:14 +0300525 struct ib_client_data *found_context = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Haggai Eran7c1eb452015-07-30 17:50:14 +0300527 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 spin_lock_irqsave(&device->client_data_lock, flags);
529 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
530 if (context->client == client) {
Haggai Eran7c1eb452015-07-30 17:50:14 +0300531 context->going_down = true;
532 found_context = context;
533 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
535 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300536 up_write(&lists_rwsem);
537
538 if (client->remove)
539 client->remove(device, found_context ?
540 found_context->data : NULL);
541
542 if (!found_context) {
543 pr_warn("No client context found for %s/%s\n",
544 device->name, client->name);
545 continue;
546 }
547
548 down_write(&lists_rwsem);
549 spin_lock_irqsave(&device->client_data_lock, flags);
550 list_del(&found_context->list);
551 kfree(found_context);
552 spin_unlock_irqrestore(&device->client_data_lock, flags);
553 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Ingo Molnar95ed6442006-01-13 14:51:39 -0800556 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558EXPORT_SYMBOL(ib_unregister_client);
559
560/**
561 * ib_get_client_data - Get IB client context
562 * @device:Device to get context for
563 * @client:Client to get context for
564 *
565 * ib_get_client_data() returns client context set with
566 * ib_set_client_data().
567 */
568void *ib_get_client_data(struct ib_device *device, struct ib_client *client)
569{
570 struct ib_client_data *context;
571 void *ret = NULL;
572 unsigned long flags;
573
574 spin_lock_irqsave(&device->client_data_lock, flags);
575 list_for_each_entry(context, &device->client_data_list, list)
576 if (context->client == client) {
577 ret = context->data;
578 break;
579 }
580 spin_unlock_irqrestore(&device->client_data_lock, flags);
581
582 return ret;
583}
584EXPORT_SYMBOL(ib_get_client_data);
585
586/**
Krishna Kumar9cd330d2006-09-22 15:22:58 -0700587 * ib_set_client_data - Set IB client context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 * @device:Device to set context for
589 * @client:Client to set context for
590 * @data:Context to set
591 *
592 * ib_set_client_data() sets client context that can be retrieved with
593 * ib_get_client_data().
594 */
595void ib_set_client_data(struct ib_device *device, struct ib_client *client,
596 void *data)
597{
598 struct ib_client_data *context;
599 unsigned long flags;
600
601 spin_lock_irqsave(&device->client_data_lock, flags);
602 list_for_each_entry(context, &device->client_data_list, list)
603 if (context->client == client) {
604 context->data = data;
605 goto out;
606 }
607
Parav Panditaba25a3e2016-03-02 00:50:29 +0530608 pr_warn("No client context found for %s/%s\n",
609 device->name, client->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611out:
612 spin_unlock_irqrestore(&device->client_data_lock, flags);
613}
614EXPORT_SYMBOL(ib_set_client_data);
615
616/**
617 * ib_register_event_handler - Register an IB event handler
618 * @event_handler:Handler to register
619 *
620 * ib_register_event_handler() registers an event handler that will be
621 * called back when asynchronous IB events occur (as defined in
622 * chapter 11 of the InfiniBand Architecture Specification). This
623 * callback may occur in interrupt context.
624 */
625int ib_register_event_handler (struct ib_event_handler *event_handler)
626{
627 unsigned long flags;
628
629 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
630 list_add_tail(&event_handler->list,
631 &event_handler->device->event_handler_list);
632 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
633
634 return 0;
635}
636EXPORT_SYMBOL(ib_register_event_handler);
637
638/**
639 * ib_unregister_event_handler - Unregister an event handler
640 * @event_handler:Handler to unregister
641 *
642 * Unregister an event handler registered with
643 * ib_register_event_handler().
644 */
645int ib_unregister_event_handler(struct ib_event_handler *event_handler)
646{
647 unsigned long flags;
648
649 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
650 list_del(&event_handler->list);
651 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
652
653 return 0;
654}
655EXPORT_SYMBOL(ib_unregister_event_handler);
656
657/**
658 * ib_dispatch_event - Dispatch an asynchronous event
659 * @event:Event to dispatch
660 *
661 * Low-level drivers must call ib_dispatch_event() to dispatch the
662 * event to all registered event handlers when an asynchronous event
663 * occurs.
664 */
665void ib_dispatch_event(struct ib_event *event)
666{
667 unsigned long flags;
668 struct ib_event_handler *handler;
669
670 spin_lock_irqsave(&event->device->event_handler_lock, flags);
671
672 list_for_each_entry(handler, &event->device->event_handler_list, list)
673 handler->handler(handler, event);
674
675 spin_unlock_irqrestore(&event->device->event_handler_lock, flags);
676}
677EXPORT_SYMBOL(ib_dispatch_event);
678
679/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 * ib_query_port - Query IB port attributes
681 * @device:Device to query
682 * @port_num:Port number to query
683 * @port_attr:Port attributes
684 *
685 * ib_query_port() returns the attributes of a port through the
686 * @port_attr pointer.
687 */
688int ib_query_port(struct ib_device *device,
689 u8 port_num,
690 struct ib_port_attr *port_attr)
691{
Eli Cohenfad61ad2016-03-11 22:58:36 +0200692 union ib_gid gid;
693 int err;
694
Yuval Shaia24dc8312017-01-25 18:41:37 +0200695 if (!rdma_is_port_valid(device, port_num))
Roland Dreier116c0072005-10-03 09:32:33 -0700696 return -EINVAL;
697
Eli Cohenfad61ad2016-03-11 22:58:36 +0200698 memset(port_attr, 0, sizeof(*port_attr));
699 err = device->query_port(device, port_num, port_attr);
700 if (err || port_attr->subnet_prefix)
701 return err;
702
Eli Cohend7012462016-06-04 15:15:18 +0300703 if (rdma_port_get_link_layer(device, port_num) != IB_LINK_LAYER_INFINIBAND)
704 return 0;
705
Eli Cohenfad61ad2016-03-11 22:58:36 +0200706 err = ib_query_gid(device, port_num, 0, &gid, NULL);
707 if (err)
708 return err;
709
710 port_attr->subnet_prefix = be64_to_cpu(gid.global.subnet_prefix);
711 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713EXPORT_SYMBOL(ib_query_port);
714
715/**
716 * ib_query_gid - Get GID table entry
717 * @device:Device to query
718 * @port_num:Port number to query
719 * @index:GID table index to query
720 * @gid:Returned GID
Matan Barak55ee3ab2015-10-15 18:38:45 +0300721 * @attr: Returned GID attributes related to this GID index (only in RoCE).
722 * NULL means ignore.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 *
724 * ib_query_gid() fetches the specified GID table entry.
725 */
726int ib_query_gid(struct ib_device *device,
Matan Barak55ee3ab2015-10-15 18:38:45 +0300727 u8 port_num, int index, union ib_gid *gid,
728 struct ib_gid_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
Matan Barak03db3a22015-07-30 18:33:26 +0300730 if (rdma_cap_roce_gid_table(device, port_num))
Matan Barak55ee3ab2015-10-15 18:38:45 +0300731 return ib_get_cached_gid(device, port_num, index, gid, attr);
732
733 if (attr)
734 return -EINVAL;
Matan Barak03db3a22015-07-30 18:33:26 +0300735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return device->query_gid(device, port_num, index, gid);
737}
738EXPORT_SYMBOL(ib_query_gid);
739
740/**
Matan Barak03db3a22015-07-30 18:33:26 +0300741 * ib_enum_roce_netdev - enumerate all RoCE ports
742 * @ib_dev : IB device we want to query
743 * @filter: Should we call the callback?
744 * @filter_cookie: Cookie passed to filter
745 * @cb: Callback to call for each found RoCE ports
746 * @cookie: Cookie passed back to the callback
747 *
748 * Enumerates all of the physical RoCE ports of ib_dev
749 * which are related to netdevice and calls callback() on each
750 * device for which filter() function returns non zero.
751 */
752void ib_enum_roce_netdev(struct ib_device *ib_dev,
753 roce_netdev_filter filter,
754 void *filter_cookie,
755 roce_netdev_callback cb,
756 void *cookie)
757{
758 u8 port;
759
760 for (port = rdma_start_port(ib_dev); port <= rdma_end_port(ib_dev);
761 port++)
762 if (rdma_protocol_roce(ib_dev, port)) {
763 struct net_device *idev = NULL;
764
765 if (ib_dev->get_netdev)
766 idev = ib_dev->get_netdev(ib_dev, port);
767
768 if (idev &&
769 idev->reg_state >= NETREG_UNREGISTERED) {
770 dev_put(idev);
771 idev = NULL;
772 }
773
774 if (filter(ib_dev, port, idev, filter_cookie))
775 cb(ib_dev, port, idev, cookie);
776
777 if (idev)
778 dev_put(idev);
779 }
780}
781
782/**
783 * ib_enum_all_roce_netdevs - enumerate all RoCE devices
784 * @filter: Should we call the callback?
785 * @filter_cookie: Cookie passed to filter
786 * @cb: Callback to call for each found RoCE ports
787 * @cookie: Cookie passed back to the callback
788 *
789 * Enumerates all RoCE devices' physical ports which are related
790 * to netdevices and calls callback() on each device for which
791 * filter() function returns non zero.
792 */
793void ib_enum_all_roce_netdevs(roce_netdev_filter filter,
794 void *filter_cookie,
795 roce_netdev_callback cb,
796 void *cookie)
797{
798 struct ib_device *dev;
799
800 down_read(&lists_rwsem);
801 list_for_each_entry(dev, &device_list, core_list)
802 ib_enum_roce_netdev(dev, filter, filter_cookie, cb, cookie);
803 up_read(&lists_rwsem);
804}
805
806/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 * ib_query_pkey - Get P_Key table entry
808 * @device:Device to query
809 * @port_num:Port number to query
810 * @index:P_Key table index to query
811 * @pkey:Returned P_Key
812 *
813 * ib_query_pkey() fetches the specified P_Key table entry.
814 */
815int ib_query_pkey(struct ib_device *device,
816 u8 port_num, u16 index, u16 *pkey)
817{
818 return device->query_pkey(device, port_num, index, pkey);
819}
820EXPORT_SYMBOL(ib_query_pkey);
821
822/**
823 * ib_modify_device - Change IB device attributes
824 * @device:Device to modify
825 * @device_modify_mask:Mask of attributes to change
826 * @device_modify:New attribute values
827 *
828 * ib_modify_device() changes a device's attributes as specified by
829 * the @device_modify_mask and @device_modify structure.
830 */
831int ib_modify_device(struct ib_device *device,
832 int device_modify_mask,
833 struct ib_device_modify *device_modify)
834{
Bart Van Assche10e1b542011-06-18 16:35:42 +0000835 if (!device->modify_device)
836 return -ENOSYS;
837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 return device->modify_device(device, device_modify_mask,
839 device_modify);
840}
841EXPORT_SYMBOL(ib_modify_device);
842
843/**
844 * ib_modify_port - Modifies the attributes for the specified port.
845 * @device: The device to modify.
846 * @port_num: The number of the port to modify.
847 * @port_modify_mask: Mask used to specify which attributes of the port
848 * to change.
849 * @port_modify: New attribute values for the port.
850 *
851 * ib_modify_port() changes a port's attributes as specified by the
852 * @port_modify_mask and @port_modify structure.
853 */
854int ib_modify_port(struct ib_device *device,
855 u8 port_num, int port_modify_mask,
856 struct ib_port_modify *port_modify)
857{
Bart Van Assche10e1b542011-06-18 16:35:42 +0000858 if (!device->modify_port)
859 return -ENOSYS;
860
Yuval Shaia24dc8312017-01-25 18:41:37 +0200861 if (!rdma_is_port_valid(device, port_num))
Roland Dreier116c0072005-10-03 09:32:33 -0700862 return -EINVAL;
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 return device->modify_port(device, port_num, port_modify_mask,
865 port_modify);
866}
867EXPORT_SYMBOL(ib_modify_port);
868
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300869/**
870 * ib_find_gid - Returns the port number and GID table index where
871 * a specified GID value occurs.
872 * @device: The device to query.
873 * @gid: The GID value to search for.
Matan Barakb39ffa12015-12-23 14:56:47 +0200874 * @gid_type: Type of GID.
Matan Barak55ee3ab2015-10-15 18:38:45 +0300875 * @ndev: The ndev related to the GID to search for.
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300876 * @port_num: The port number of the device where the GID value was found.
877 * @index: The index into the GID table where the GID was found. This
878 * parameter may be NULL.
879 */
880int ib_find_gid(struct ib_device *device, union ib_gid *gid,
Matan Barakb39ffa12015-12-23 14:56:47 +0200881 enum ib_gid_type gid_type, struct net_device *ndev,
882 u8 *port_num, u16 *index)
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300883{
884 union ib_gid tmp_gid;
885 int ret, port, i;
886
Ira Weiny0cf18d72015-05-13 20:02:55 -0400887 for (port = rdma_start_port(device); port <= rdma_end_port(device); ++port) {
Matan Barak03db3a22015-07-30 18:33:26 +0300888 if (rdma_cap_roce_gid_table(device, port)) {
Matan Barakb39ffa12015-12-23 14:56:47 +0200889 if (!ib_find_cached_gid_by_port(device, gid, gid_type, port,
Matan Barakd300ec52015-10-15 18:38:46 +0300890 ndev, index)) {
Matan Barak03db3a22015-07-30 18:33:26 +0300891 *port_num = port;
892 return 0;
Dan Carpenter98d25af2015-08-18 12:22:10 +0300893 }
Matan Barak03db3a22015-07-30 18:33:26 +0300894 }
895
Matan Barakb39ffa12015-12-23 14:56:47 +0200896 if (gid_type != IB_GID_TYPE_IB)
897 continue;
898
Ira Weiny77386132015-05-13 20:02:58 -0400899 for (i = 0; i < device->port_immutable[port].gid_tbl_len; ++i) {
Matan Barak55ee3ab2015-10-15 18:38:45 +0300900 ret = ib_query_gid(device, port, i, &tmp_gid, NULL);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300901 if (ret)
902 return ret;
903 if (!memcmp(&tmp_gid, gid, sizeof *gid)) {
904 *port_num = port;
905 if (index)
906 *index = i;
907 return 0;
908 }
909 }
910 }
911
912 return -ENOENT;
913}
914EXPORT_SYMBOL(ib_find_gid);
915
916/**
917 * ib_find_pkey - Returns the PKey table index where a specified
918 * PKey value occurs.
919 * @device: The device to query.
920 * @port_num: The port number of the device to search for the PKey.
921 * @pkey: The PKey value to search for.
922 * @index: The index into the PKey table where the PKey was found.
923 */
924int ib_find_pkey(struct ib_device *device,
925 u8 port_num, u16 pkey, u16 *index)
926{
927 int ret, i;
928 u16 tmp_pkey;
Jack Morgensteinff7166c2012-08-03 08:40:38 +0000929 int partial_ix = -1;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300930
Ira Weiny77386132015-05-13 20:02:58 -0400931 for (i = 0; i < device->port_immutable[port_num].pkey_tbl_len; ++i) {
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300932 ret = ib_query_pkey(device, port_num, i, &tmp_pkey);
933 if (ret)
934 return ret;
Moni Shoua36026ec2007-07-23 10:07:42 +0300935 if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) {
Jack Morgensteinff7166c2012-08-03 08:40:38 +0000936 /* if there is full-member pkey take it.*/
937 if (tmp_pkey & 0x8000) {
938 *index = i;
939 return 0;
940 }
941 if (partial_ix < 0)
942 partial_ix = i;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300943 }
944 }
945
Jack Morgensteinff7166c2012-08-03 08:40:38 +0000946 /*no full-member, if exists take the limited*/
947 if (partial_ix >= 0) {
948 *index = partial_ix;
949 return 0;
950 }
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300951 return -ENOENT;
952}
953EXPORT_SYMBOL(ib_find_pkey);
954
Yotam Kenneth9268f722015-07-30 17:50:15 +0300955/**
956 * ib_get_net_dev_by_params() - Return the appropriate net_dev
957 * for a received CM request
958 * @dev: An RDMA device on which the request has been received.
959 * @port: Port number on the RDMA device.
960 * @pkey: The Pkey the request came on.
961 * @gid: A GID that the net_dev uses to communicate.
962 * @addr: Contains the IP address that the request specified as its
963 * destination.
964 */
965struct net_device *ib_get_net_dev_by_params(struct ib_device *dev,
966 u8 port,
967 u16 pkey,
968 const union ib_gid *gid,
969 const struct sockaddr *addr)
970{
971 struct net_device *net_dev = NULL;
972 struct ib_client_data *context;
973
974 if (!rdma_protocol_ib(dev, port))
975 return NULL;
976
977 down_read(&lists_rwsem);
978
979 list_for_each_entry(context, &dev->client_data_list, list) {
980 struct ib_client *client = context->client;
981
982 if (context->going_down)
983 continue;
984
985 if (client->get_net_dev_by_params) {
986 net_dev = client->get_net_dev_by_params(dev, port, pkey,
987 gid, addr,
988 context->data);
989 if (net_dev)
990 break;
991 }
992 }
993
994 up_read(&lists_rwsem);
995
996 return net_dev;
997}
998EXPORT_SYMBOL(ib_get_net_dev_by_params);
999
Mark Bloch735c6312016-05-19 17:12:35 +03001000static struct ibnl_client_cbs ibnl_ls_cb_table[] = {
1001 [RDMA_NL_LS_OP_RESOLVE] = {
1002 .dump = ib_nl_handle_resolve_resp,
1003 .module = THIS_MODULE },
1004 [RDMA_NL_LS_OP_SET_TIMEOUT] = {
1005 .dump = ib_nl_handle_set_timeout,
1006 .module = THIS_MODULE },
Mark Blochae43f822016-05-19 17:12:36 +03001007 [RDMA_NL_LS_OP_IP_RESOLVE] = {
1008 .dump = ib_nl_handle_ip_res_resp,
1009 .module = THIS_MODULE },
Mark Bloch735c6312016-05-19 17:12:35 +03001010};
1011
1012static int ib_add_ibnl_clients(void)
1013{
1014 return ibnl_add_client(RDMA_NL_LS, ARRAY_SIZE(ibnl_ls_cb_table),
1015 ibnl_ls_cb_table);
1016}
1017
1018static void ib_remove_ibnl_clients(void)
1019{
1020 ibnl_remove_client(RDMA_NL_LS);
1021}
1022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023static int __init ib_core_init(void)
1024{
1025 int ret;
1026
Tejun Heof0626712010-10-19 15:24:36 +00001027 ib_wq = alloc_workqueue("infiniband", 0, 0);
1028 if (!ib_wq)
1029 return -ENOMEM;
1030
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001031 ib_comp_wq = alloc_workqueue("ib-comp-wq",
1032 WQ_UNBOUND | WQ_HIGHPRI | WQ_MEM_RECLAIM,
1033 WQ_UNBOUND_MAX_ACTIVE);
1034 if (!ib_comp_wq) {
1035 ret = -ENOMEM;
1036 goto err;
1037 }
1038
Jason Gunthorpe55aeed02015-08-04 15:23:34 -06001039 ret = class_register(&ib_class);
Nir Muchtarfd75c782011-05-20 11:46:10 -07001040 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +05301041 pr_warn("Couldn't create InfiniBand device class\n");
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001042 goto err_comp;
Nir Muchtarfd75c782011-05-20 11:46:10 -07001043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Roland Dreierb2cbae22011-05-20 11:46:11 -07001045 ret = ibnl_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +05301047 pr_warn("Couldn't init IB netlink interface\n");
Nir Muchtarfd75c782011-05-20 11:46:10 -07001048 goto err_sysfs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050
Leon Romanovskye3f20f02016-05-19 17:12:31 +03001051 ret = addr_init();
1052 if (ret) {
1053 pr_warn("Could't init IB address resolution\n");
1054 goto err_ibnl;
1055 }
1056
Mark Bloch4c2cb422016-05-19 17:12:32 +03001057 ret = ib_mad_init();
1058 if (ret) {
1059 pr_warn("Couldn't init IB MAD\n");
1060 goto err_addr;
1061 }
1062
Mark Blochc2e49c92016-05-19 17:12:33 +03001063 ret = ib_sa_init();
1064 if (ret) {
1065 pr_warn("Couldn't init SA\n");
1066 goto err_mad;
1067 }
1068
Dan Carpenterda1f8572016-05-31 19:05:56 +03001069 ret = ib_add_ibnl_clients();
1070 if (ret) {
Mark Bloch735c6312016-05-19 17:12:35 +03001071 pr_warn("Couldn't register ibnl clients\n");
1072 goto err_sa;
1073 }
1074
Matan Barak03db3a22015-07-30 18:33:26 +03001075 ib_cache_setup();
Roland Dreierb2cbae22011-05-20 11:46:11 -07001076
Nir Muchtarfd75c782011-05-20 11:46:10 -07001077 return 0;
1078
Mark Bloch735c6312016-05-19 17:12:35 +03001079err_sa:
1080 ib_sa_cleanup();
Mark Blochc2e49c92016-05-19 17:12:33 +03001081err_mad:
1082 ib_mad_cleanup();
Mark Bloch4c2cb422016-05-19 17:12:32 +03001083err_addr:
1084 addr_cleanup();
Leon Romanovskye3f20f02016-05-19 17:12:31 +03001085err_ibnl:
1086 ibnl_cleanup();
Nir Muchtarfd75c782011-05-20 11:46:10 -07001087err_sysfs:
Jason Gunthorpe55aeed02015-08-04 15:23:34 -06001088 class_unregister(&ib_class);
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001089err_comp:
1090 destroy_workqueue(ib_comp_wq);
Nir Muchtarfd75c782011-05-20 11:46:10 -07001091err:
1092 destroy_workqueue(ib_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return ret;
1094}
1095
1096static void __exit ib_core_cleanup(void)
1097{
1098 ib_cache_cleanup();
Mark Bloch735c6312016-05-19 17:12:35 +03001099 ib_remove_ibnl_clients();
Mark Blochc2e49c92016-05-19 17:12:33 +03001100 ib_sa_cleanup();
Mark Bloch4c2cb422016-05-19 17:12:32 +03001101 ib_mad_cleanup();
Leon Romanovskye3f20f02016-05-19 17:12:31 +03001102 addr_cleanup();
Roland Dreierb2cbae22011-05-20 11:46:11 -07001103 ibnl_cleanup();
Jason Gunthorpe55aeed02015-08-04 15:23:34 -06001104 class_unregister(&ib_class);
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001105 destroy_workqueue(ib_comp_wq);
Roland Dreierf7c6a7b2007-03-04 16:15:11 -08001106 /* Make sure that any pending umem accounting work is done. */
Tejun Heof0626712010-10-19 15:24:36 +00001107 destroy_workqueue(ib_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108}
1109
1110module_init(ib_core_init);
1111module_exit(ib_core_cleanup);