Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2004 Topspin Communications. All rights reserved. |
Roland Dreier | 2a1d9b7 | 2005-08-10 23:03:10 -0700 | [diff] [blame] | 3 | * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | */ |
| 33 | |
| 34 | #include <linux/module.h> |
| 35 | #include <linux/string.h> |
| 36 | #include <linux/errno.h> |
Ahmed S. Darwish | 9a6b090 | 2007-02-06 18:07:25 +0200 | [diff] [blame] | 37 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/slab.h> |
| 39 | #include <linux/init.h> |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 40 | #include <linux/mutex.h> |
Yotam Kenneth | 9268f72 | 2015-07-30 17:50:15 +0300 | [diff] [blame] | 41 | #include <linux/netdevice.h> |
Roland Dreier | b2cbae2 | 2011-05-20 11:46:11 -0700 | [diff] [blame] | 42 | #include <rdma/rdma_netlink.h> |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 43 | #include <rdma/ib_addr.h> |
| 44 | #include <rdma/ib_cache.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | #include "core_priv.h" |
| 47 | |
| 48 | MODULE_AUTHOR("Roland Dreier"); |
| 49 | MODULE_DESCRIPTION("core kernel InfiniBand API"); |
| 50 | MODULE_LICENSE("Dual BSD/GPL"); |
| 51 | |
| 52 | struct ib_client_data { |
| 53 | struct list_head list; |
| 54 | struct ib_client *client; |
| 55 | void * data; |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 56 | /* The device or client is going down. Do not call client or device |
| 57 | * callbacks other than remove(). */ |
| 58 | bool going_down; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | }; |
| 60 | |
Christoph Hellwig | 14d3a3b | 2015-12-11 11:53:03 -0800 | [diff] [blame] | 61 | struct workqueue_struct *ib_comp_wq; |
Tejun Heo | f062671 | 2010-10-19 15:24:36 +0000 | [diff] [blame] | 62 | struct workqueue_struct *ib_wq; |
| 63 | EXPORT_SYMBOL_GPL(ib_wq); |
| 64 | |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 65 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | static LIST_HEAD(device_list); |
| 69 | static LIST_HEAD(client_list); |
| 70 | |
| 71 | /* |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 72 | * 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 Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 79 | * |
| 80 | * lists_rwsem also protects access to the client data list. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | */ |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 82 | static DEFINE_MUTEX(device_mutex); |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 83 | static DECLARE_RWSEM(lists_rwsem); |
| 84 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
| 86 | static 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 Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 111 | IB_MANDATORY_FUNC(dereg_mr), |
| 112 | IB_MANDATORY_FUNC(get_port_immutable) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | }; |
| 114 | int i; |
| 115 | |
Ahmed S. Darwish | 9a6b090 | 2007-02-06 18:07:25 +0200 | [diff] [blame] | 116 | for (i = 0; i < ARRAY_SIZE(mandatory_table); ++i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | if (!*(void **) ((void *) device + mandatory_table[i].offset)) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 118 | pr_warn("Device %s is missing mandatory function %s\n", |
| 119 | device->name, mandatory_table[i].name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | return -EINVAL; |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | return 0; |
| 125 | } |
| 126 | |
| 127 | static 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 | |
| 139 | static int alloc_name(char *name) |
| 140 | { |
Roland Dreier | 65d470b | 2007-10-09 19:59:04 -0700 | [diff] [blame] | 141 | unsigned long *inuse; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | char buf[IB_DEVICE_NAME_MAX]; |
| 143 | struct ib_device *device; |
| 144 | int i; |
| 145 | |
Roland Dreier | 65d470b | 2007-10-09 19:59:04 -0700 | [diff] [blame] | 146 | inuse = (unsigned long *) get_zeroed_page(GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | 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 Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 171 | static void ib_device_release(struct device *device) |
| 172 | { |
| 173 | struct ib_device *dev = container_of(device, struct ib_device, dev); |
| 174 | |
Parav Pandit | 4be3a4f | 2017-03-19 10:55:55 +0200 | [diff] [blame] | 175 | WARN_ON(dev->reg_state == IB_DEV_REGISTERED); |
| 176 | if (dev->reg_state == IB_DEV_UNREGISTERED) { |
| 177 | /* |
| 178 | * In IB_DEV_UNINITIALIZED state, cache or port table |
| 179 | * is not even created. Free cache and port table only when |
| 180 | * device reaches UNREGISTERED state. |
| 181 | */ |
| 182 | ib_cache_release_one(dev); |
| 183 | kfree(dev->port_immutable); |
| 184 | } |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 185 | kfree(dev); |
| 186 | } |
| 187 | |
| 188 | static int ib_device_uevent(struct device *device, |
| 189 | struct kobj_uevent_env *env) |
| 190 | { |
| 191 | struct ib_device *dev = container_of(device, struct ib_device, dev); |
| 192 | |
| 193 | if (add_uevent_var(env, "NAME=%s", dev->name)) |
| 194 | return -ENOMEM; |
| 195 | |
| 196 | /* |
| 197 | * It would be nice to pass the node GUID with the event... |
| 198 | */ |
| 199 | |
| 200 | return 0; |
| 201 | } |
| 202 | |
| 203 | static struct class ib_class = { |
| 204 | .name = "infiniband", |
| 205 | .dev_release = ib_device_release, |
| 206 | .dev_uevent = ib_device_uevent, |
| 207 | }; |
| 208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | /** |
| 210 | * ib_alloc_device - allocate an IB device struct |
| 211 | * @size:size of structure to allocate |
| 212 | * |
| 213 | * Low-level drivers should use ib_alloc_device() to allocate &struct |
| 214 | * ib_device. @size is the size of the structure to be allocated, |
| 215 | * including any private data used by the low-level driver. |
| 216 | * ib_dealloc_device() must be used to free structures allocated with |
| 217 | * ib_alloc_device(). |
| 218 | */ |
| 219 | struct ib_device *ib_alloc_device(size_t size) |
| 220 | { |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 221 | struct ib_device *device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 223 | if (WARN_ON(size < sizeof(struct ib_device))) |
| 224 | return NULL; |
| 225 | |
| 226 | device = kzalloc(size, GFP_KERNEL); |
| 227 | if (!device) |
| 228 | return NULL; |
| 229 | |
| 230 | device->dev.class = &ib_class; |
| 231 | device_initialize(&device->dev); |
| 232 | |
| 233 | dev_set_drvdata(&device->dev, device); |
| 234 | |
| 235 | INIT_LIST_HEAD(&device->event_handler_list); |
| 236 | spin_lock_init(&device->event_handler_lock); |
| 237 | spin_lock_init(&device->client_data_lock); |
| 238 | INIT_LIST_HEAD(&device->client_data_list); |
| 239 | INIT_LIST_HEAD(&device->port_list); |
| 240 | |
| 241 | return device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | } |
| 243 | EXPORT_SYMBOL(ib_alloc_device); |
| 244 | |
| 245 | /** |
| 246 | * ib_dealloc_device - free an IB device struct |
| 247 | * @device:structure to free |
| 248 | * |
| 249 | * Free a structure allocated with ib_alloc_device(). |
| 250 | */ |
| 251 | void ib_dealloc_device(struct ib_device *device) |
| 252 | { |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 253 | WARN_ON(device->reg_state != IB_DEV_UNREGISTERED && |
| 254 | device->reg_state != IB_DEV_UNINITIALIZED); |
Roland Dreier | 9206dff | 2009-02-25 13:27:46 -0800 | [diff] [blame] | 255 | kobject_put(&device->dev.kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | } |
| 257 | EXPORT_SYMBOL(ib_dealloc_device); |
| 258 | |
| 259 | static int add_client_context(struct ib_device *device, struct ib_client *client) |
| 260 | { |
| 261 | struct ib_client_data *context; |
| 262 | unsigned long flags; |
| 263 | |
| 264 | context = kmalloc(sizeof *context, GFP_KERNEL); |
Leon Romanovsky | a0b3455 | 2016-11-03 16:44:10 +0200 | [diff] [blame] | 265 | if (!context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | |
| 268 | context->client = client; |
| 269 | context->data = NULL; |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 270 | context->going_down = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 272 | down_write(&lists_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | spin_lock_irqsave(&device->client_data_lock, flags); |
| 274 | list_add(&context->list, &device->client_data_list); |
| 275 | spin_unlock_irqrestore(&device->client_data_lock, flags); |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 276 | up_write(&lists_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | |
| 278 | return 0; |
| 279 | } |
| 280 | |
Ira Weiny | 337877a | 2015-06-06 14:38:29 -0400 | [diff] [blame] | 281 | static int verify_immutable(const struct ib_device *dev, u8 port) |
| 282 | { |
| 283 | return WARN_ON(!rdma_cap_ib_mad(dev, port) && |
| 284 | rdma_max_mad_size(dev, port) != 0); |
| 285 | } |
| 286 | |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 287 | static int read_port_immutable(struct ib_device *device) |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 288 | { |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 289 | int ret; |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 290 | u8 start_port = rdma_start_port(device); |
| 291 | u8 end_port = rdma_end_port(device); |
| 292 | u8 port; |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 293 | |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 294 | /** |
| 295 | * device->port_immutable is indexed directly by the port number to make |
| 296 | * access to this data as efficient as possible. |
| 297 | * |
| 298 | * Therefore port_immutable is declared as a 1 based array with |
| 299 | * potential empty slots at the beginning. |
| 300 | */ |
| 301 | device->port_immutable = kzalloc(sizeof(*device->port_immutable) |
| 302 | * (end_port + 1), |
| 303 | GFP_KERNEL); |
| 304 | if (!device->port_immutable) |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 305 | return -ENOMEM; |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 306 | |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 307 | for (port = start_port; port <= end_port; ++port) { |
| 308 | ret = device->get_port_immutable(device, port, |
| 309 | &device->port_immutable[port]); |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 310 | if (ret) |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 311 | return ret; |
Ira Weiny | 337877a | 2015-06-06 14:38:29 -0400 | [diff] [blame] | 312 | |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 313 | if (verify_immutable(device, port)) |
| 314 | return -EINVAL; |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 315 | } |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 316 | return 0; |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 317 | } |
| 318 | |
Ira Weiny | 5fa76c2 | 2016-06-15 02:21:56 -0400 | [diff] [blame] | 319 | void ib_get_device_fw_str(struct ib_device *dev, char *str, size_t str_len) |
| 320 | { |
| 321 | if (dev->get_dev_fw_str) |
| 322 | dev->get_dev_fw_str(dev, str, str_len); |
| 323 | else |
| 324 | str[0] = '\0'; |
| 325 | } |
| 326 | EXPORT_SYMBOL(ib_get_device_fw_str); |
| 327 | |
Daniel Jurgens | d291f1a | 2017-05-19 15:48:52 +0300 | [diff] [blame^] | 328 | static int setup_port_pkey_list(struct ib_device *device) |
| 329 | { |
| 330 | int i; |
| 331 | |
| 332 | /** |
| 333 | * device->port_pkey_list is indexed directly by the port number, |
| 334 | * Therefore it is declared as a 1 based array with potential empty |
| 335 | * slots at the beginning. |
| 336 | */ |
| 337 | device->port_pkey_list = kcalloc(rdma_end_port(device) + 1, |
| 338 | sizeof(*device->port_pkey_list), |
| 339 | GFP_KERNEL); |
| 340 | |
| 341 | if (!device->port_pkey_list) |
| 342 | return -ENOMEM; |
| 343 | |
| 344 | for (i = 0; i < (rdma_end_port(device) + 1); i++) { |
| 345 | spin_lock_init(&device->port_pkey_list[i].list_lock); |
| 346 | INIT_LIST_HEAD(&device->port_pkey_list[i].pkey_list); |
| 347 | } |
| 348 | |
| 349 | return 0; |
| 350 | } |
| 351 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | /** |
| 353 | * ib_register_device - Register an IB device with IB core |
| 354 | * @device:Device to register |
| 355 | * |
| 356 | * Low-level drivers use ib_register_device() to register their |
| 357 | * devices with the IB core. All registered clients will receive a |
| 358 | * callback for each device that is added. @device must be allocated |
| 359 | * with ib_alloc_device(). |
| 360 | */ |
Ralph Campbell | 9a6edb6 | 2010-05-06 17:03:25 -0700 | [diff] [blame] | 361 | int ib_register_device(struct ib_device *device, |
| 362 | int (*port_callback)(struct ib_device *, |
| 363 | u8, struct kobject *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | { |
| 365 | int ret; |
Doug Ledford | b8071ad | 2015-08-15 10:16:14 -0400 | [diff] [blame] | 366 | struct ib_client *client; |
Ira Weiny | 3e153a9 | 2015-12-18 10:59:44 +0200 | [diff] [blame] | 367 | struct ib_udata uhw = {.outlen = 0, .inlen = 0}; |
Bart Van Assche | 99db949 | 2017-01-20 13:04:36 -0800 | [diff] [blame] | 368 | struct device *parent = device->dev.parent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | |
Bart Van Assche | 99db949 | 2017-01-20 13:04:36 -0800 | [diff] [blame] | 370 | WARN_ON_ONCE(!parent); |
Bart Van Assche | 0957c29 | 2017-03-07 22:56:53 +0000 | [diff] [blame] | 371 | WARN_ON_ONCE(device->dma_device); |
| 372 | if (device->dev.dma_ops) { |
| 373 | /* |
| 374 | * The caller provided custom DMA operations. Copy the |
| 375 | * DMA-related fields that are used by e.g. dma_alloc_coherent() |
| 376 | * into device->dev. |
| 377 | */ |
| 378 | device->dma_device = &device->dev; |
| 379 | if (!device->dev.dma_mask) |
| 380 | device->dev.dma_mask = parent->dma_mask; |
| 381 | if (!device->dev.coherent_dma_mask) |
| 382 | device->dev.coherent_dma_mask = |
| 383 | parent->coherent_dma_mask; |
| 384 | } else { |
| 385 | /* |
| 386 | * The caller did not provide custom DMA operations. Use the |
| 387 | * DMA mapping operations of the parent device. |
| 388 | */ |
| 389 | device->dma_device = parent; |
| 390 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 392 | mutex_lock(&device_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
| 394 | if (strchr(device->name, '%')) { |
| 395 | ret = alloc_name(device->name); |
| 396 | if (ret) |
| 397 | goto out; |
| 398 | } |
| 399 | |
| 400 | if (ib_device_check_mandatory(device)) { |
| 401 | ret = -EINVAL; |
| 402 | goto out; |
| 403 | } |
| 404 | |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 405 | ret = read_port_immutable(device); |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 406 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 407 | pr_warn("Couldn't create per port immutable data %s\n", |
| 408 | device->name); |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 409 | goto out; |
| 410 | } |
| 411 | |
Daniel Jurgens | d291f1a | 2017-05-19 15:48:52 +0300 | [diff] [blame^] | 412 | ret = setup_port_pkey_list(device); |
| 413 | if (ret) { |
| 414 | pr_warn("Couldn't create per port_pkey_list\n"); |
| 415 | goto out; |
| 416 | } |
| 417 | |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 418 | ret = ib_cache_setup_one(device); |
| 419 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 420 | pr_warn("Couldn't set up InfiniBand P_Key/GID cache\n"); |
Parav Pandit | 4be3a4f | 2017-03-19 10:55:55 +0200 | [diff] [blame] | 421 | goto port_cleanup; |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 422 | } |
| 423 | |
Parav Pandit | 43579b5 | 2017-01-10 00:02:14 +0000 | [diff] [blame] | 424 | ret = ib_device_register_rdmacg(device); |
| 425 | if (ret) { |
| 426 | pr_warn("Couldn't register device with rdma cgroup\n"); |
Parav Pandit | 4be3a4f | 2017-03-19 10:55:55 +0200 | [diff] [blame] | 427 | goto cache_cleanup; |
Parav Pandit | 43579b5 | 2017-01-10 00:02:14 +0000 | [diff] [blame] | 428 | } |
| 429 | |
Ira Weiny | 3e153a9 | 2015-12-18 10:59:44 +0200 | [diff] [blame] | 430 | memset(&device->attrs, 0, sizeof(device->attrs)); |
| 431 | ret = device->query_device(device, &device->attrs, &uhw); |
| 432 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 433 | pr_warn("Couldn't query the device attributes\n"); |
Parav Pandit | 4be3a4f | 2017-03-19 10:55:55 +0200 | [diff] [blame] | 434 | goto cache_cleanup; |
Ira Weiny | 3e153a9 | 2015-12-18 10:59:44 +0200 | [diff] [blame] | 435 | } |
| 436 | |
Ralph Campbell | 9a6edb6 | 2010-05-06 17:03:25 -0700 | [diff] [blame] | 437 | ret = ib_device_register_sysfs(device, port_callback); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 439 | pr_warn("Couldn't register device %s with driver model\n", |
| 440 | device->name); |
Parav Pandit | 4be3a4f | 2017-03-19 10:55:55 +0200 | [diff] [blame] | 441 | goto cache_cleanup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | } |
| 443 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | device->reg_state = IB_DEV_REGISTERED; |
| 445 | |
Doug Ledford | b8071ad | 2015-08-15 10:16:14 -0400 | [diff] [blame] | 446 | list_for_each_entry(client, &client_list, list) |
| 447 | if (client->add && !add_client_context(device, client)) |
| 448 | client->add(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 450 | down_write(&lists_rwsem); |
| 451 | list_add_tail(&device->core_list, &device_list); |
| 452 | up_write(&lists_rwsem); |
Parav Pandit | 4be3a4f | 2017-03-19 10:55:55 +0200 | [diff] [blame] | 453 | mutex_unlock(&device_mutex); |
| 454 | return 0; |
| 455 | |
| 456 | cache_cleanup: |
| 457 | ib_cache_cleanup_one(device); |
| 458 | ib_cache_release_one(device); |
| 459 | port_cleanup: |
| 460 | kfree(device->port_immutable); |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 461 | out: |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 462 | mutex_unlock(&device_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | return ret; |
| 464 | } |
| 465 | EXPORT_SYMBOL(ib_register_device); |
| 466 | |
| 467 | /** |
| 468 | * ib_unregister_device - Unregister an IB device |
| 469 | * @device:Device to unregister |
| 470 | * |
| 471 | * Unregister an IB device. All clients will receive a remove callback. |
| 472 | */ |
| 473 | void ib_unregister_device(struct ib_device *device) |
| 474 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | struct ib_client_data *context, *tmp; |
| 476 | unsigned long flags; |
| 477 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 478 | mutex_lock(&device_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 480 | down_write(&lists_rwsem); |
| 481 | list_del(&device->core_list); |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 482 | spin_lock_irqsave(&device->client_data_lock, flags); |
| 483 | list_for_each_entry_safe(context, tmp, &device->client_data_list, list) |
| 484 | context->going_down = true; |
| 485 | spin_unlock_irqrestore(&device->client_data_lock, flags); |
| 486 | downgrade_write(&lists_rwsem); |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 487 | |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 488 | list_for_each_entry_safe(context, tmp, &device->client_data_list, |
| 489 | list) { |
| 490 | if (context->client->remove) |
| 491 | context->client->remove(device, context->data); |
| 492 | } |
| 493 | up_read(&lists_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 495 | mutex_unlock(&device_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | |
Parav Pandit | 43579b5 | 2017-01-10 00:02:14 +0000 | [diff] [blame] | 497 | ib_device_unregister_rdmacg(device); |
Roland Dreier | 9206dff | 2009-02-25 13:27:46 -0800 | [diff] [blame] | 498 | ib_device_unregister_sysfs(device); |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 499 | ib_cache_cleanup_one(device); |
Roland Dreier | 9206dff | 2009-02-25 13:27:46 -0800 | [diff] [blame] | 500 | |
Daniel Jurgens | d291f1a | 2017-05-19 15:48:52 +0300 | [diff] [blame^] | 501 | ib_security_destroy_port_pkey_list(device); |
| 502 | kfree(device->port_pkey_list); |
| 503 | |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 504 | down_write(&lists_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | spin_lock_irqsave(&device->client_data_lock, flags); |
| 506 | list_for_each_entry_safe(context, tmp, &device->client_data_list, list) |
| 507 | kfree(context); |
| 508 | spin_unlock_irqrestore(&device->client_data_lock, flags); |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 509 | up_write(&lists_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | |
| 511 | device->reg_state = IB_DEV_UNREGISTERED; |
| 512 | } |
| 513 | EXPORT_SYMBOL(ib_unregister_device); |
| 514 | |
| 515 | /** |
| 516 | * ib_register_client - Register an IB client |
| 517 | * @client:Client to register |
| 518 | * |
| 519 | * Upper level users of the IB drivers can use ib_register_client() to |
| 520 | * register callbacks for IB device addition and removal. When an IB |
| 521 | * device is added, each registered client's add method will be called |
| 522 | * (in the order the clients were registered), and when a device is |
| 523 | * removed, each client's remove method will be called (in the reverse |
| 524 | * order that clients were registered). In addition, when |
| 525 | * ib_register_client() is called, the client will receive an add |
| 526 | * callback for all devices already registered. |
| 527 | */ |
| 528 | int ib_register_client(struct ib_client *client) |
| 529 | { |
| 530 | struct ib_device *device; |
| 531 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 532 | mutex_lock(&device_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | list_for_each_entry(device, &device_list, core_list) |
| 535 | if (client->add && !add_client_context(device, client)) |
| 536 | client->add(device); |
| 537 | |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 538 | down_write(&lists_rwsem); |
| 539 | list_add_tail(&client->list, &client_list); |
| 540 | up_write(&lists_rwsem); |
| 541 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 542 | mutex_unlock(&device_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
| 544 | return 0; |
| 545 | } |
| 546 | EXPORT_SYMBOL(ib_register_client); |
| 547 | |
| 548 | /** |
| 549 | * ib_unregister_client - Unregister an IB client |
| 550 | * @client:Client to unregister |
| 551 | * |
| 552 | * Upper level users use ib_unregister_client() to remove their client |
| 553 | * registration. When ib_unregister_client() is called, the client |
| 554 | * will receive a remove callback for each IB device still registered. |
| 555 | */ |
| 556 | void ib_unregister_client(struct ib_client *client) |
| 557 | { |
| 558 | struct ib_client_data *context, *tmp; |
| 559 | struct ib_device *device; |
| 560 | unsigned long flags; |
| 561 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 562 | mutex_lock(&device_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 564 | down_write(&lists_rwsem); |
| 565 | list_del(&client->list); |
| 566 | up_write(&lists_rwsem); |
| 567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | list_for_each_entry(device, &device_list, core_list) { |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 569 | struct ib_client_data *found_context = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 571 | down_write(&lists_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | spin_lock_irqsave(&device->client_data_lock, flags); |
| 573 | list_for_each_entry_safe(context, tmp, &device->client_data_list, list) |
| 574 | if (context->client == client) { |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 575 | context->going_down = true; |
| 576 | found_context = context; |
| 577 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | } |
| 579 | spin_unlock_irqrestore(&device->client_data_lock, flags); |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 580 | up_write(&lists_rwsem); |
| 581 | |
| 582 | if (client->remove) |
| 583 | client->remove(device, found_context ? |
| 584 | found_context->data : NULL); |
| 585 | |
| 586 | if (!found_context) { |
| 587 | pr_warn("No client context found for %s/%s\n", |
| 588 | device->name, client->name); |
| 589 | continue; |
| 590 | } |
| 591 | |
| 592 | down_write(&lists_rwsem); |
| 593 | spin_lock_irqsave(&device->client_data_lock, flags); |
| 594 | list_del(&found_context->list); |
| 595 | kfree(found_context); |
| 596 | spin_unlock_irqrestore(&device->client_data_lock, flags); |
| 597 | up_write(&lists_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 600 | mutex_unlock(&device_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | } |
| 602 | EXPORT_SYMBOL(ib_unregister_client); |
| 603 | |
| 604 | /** |
| 605 | * ib_get_client_data - Get IB client context |
| 606 | * @device:Device to get context for |
| 607 | * @client:Client to get context for |
| 608 | * |
| 609 | * ib_get_client_data() returns client context set with |
| 610 | * ib_set_client_data(). |
| 611 | */ |
| 612 | void *ib_get_client_data(struct ib_device *device, struct ib_client *client) |
| 613 | { |
| 614 | struct ib_client_data *context; |
| 615 | void *ret = NULL; |
| 616 | unsigned long flags; |
| 617 | |
| 618 | spin_lock_irqsave(&device->client_data_lock, flags); |
| 619 | list_for_each_entry(context, &device->client_data_list, list) |
| 620 | if (context->client == client) { |
| 621 | ret = context->data; |
| 622 | break; |
| 623 | } |
| 624 | spin_unlock_irqrestore(&device->client_data_lock, flags); |
| 625 | |
| 626 | return ret; |
| 627 | } |
| 628 | EXPORT_SYMBOL(ib_get_client_data); |
| 629 | |
| 630 | /** |
Krishna Kumar | 9cd330d | 2006-09-22 15:22:58 -0700 | [diff] [blame] | 631 | * ib_set_client_data - Set IB client context |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | * @device:Device to set context for |
| 633 | * @client:Client to set context for |
| 634 | * @data:Context to set |
| 635 | * |
| 636 | * ib_set_client_data() sets client context that can be retrieved with |
| 637 | * ib_get_client_data(). |
| 638 | */ |
| 639 | void ib_set_client_data(struct ib_device *device, struct ib_client *client, |
| 640 | void *data) |
| 641 | { |
| 642 | struct ib_client_data *context; |
| 643 | unsigned long flags; |
| 644 | |
| 645 | spin_lock_irqsave(&device->client_data_lock, flags); |
| 646 | list_for_each_entry(context, &device->client_data_list, list) |
| 647 | if (context->client == client) { |
| 648 | context->data = data; |
| 649 | goto out; |
| 650 | } |
| 651 | |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 652 | pr_warn("No client context found for %s/%s\n", |
| 653 | device->name, client->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | |
| 655 | out: |
| 656 | spin_unlock_irqrestore(&device->client_data_lock, flags); |
| 657 | } |
| 658 | EXPORT_SYMBOL(ib_set_client_data); |
| 659 | |
| 660 | /** |
| 661 | * ib_register_event_handler - Register an IB event handler |
| 662 | * @event_handler:Handler to register |
| 663 | * |
| 664 | * ib_register_event_handler() registers an event handler that will be |
| 665 | * called back when asynchronous IB events occur (as defined in |
| 666 | * chapter 11 of the InfiniBand Architecture Specification). This |
| 667 | * callback may occur in interrupt context. |
| 668 | */ |
| 669 | int ib_register_event_handler (struct ib_event_handler *event_handler) |
| 670 | { |
| 671 | unsigned long flags; |
| 672 | |
| 673 | spin_lock_irqsave(&event_handler->device->event_handler_lock, flags); |
| 674 | list_add_tail(&event_handler->list, |
| 675 | &event_handler->device->event_handler_list); |
| 676 | spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags); |
| 677 | |
| 678 | return 0; |
| 679 | } |
| 680 | EXPORT_SYMBOL(ib_register_event_handler); |
| 681 | |
| 682 | /** |
| 683 | * ib_unregister_event_handler - Unregister an event handler |
| 684 | * @event_handler:Handler to unregister |
| 685 | * |
| 686 | * Unregister an event handler registered with |
| 687 | * ib_register_event_handler(). |
| 688 | */ |
| 689 | int ib_unregister_event_handler(struct ib_event_handler *event_handler) |
| 690 | { |
| 691 | unsigned long flags; |
| 692 | |
| 693 | spin_lock_irqsave(&event_handler->device->event_handler_lock, flags); |
| 694 | list_del(&event_handler->list); |
| 695 | spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags); |
| 696 | |
| 697 | return 0; |
| 698 | } |
| 699 | EXPORT_SYMBOL(ib_unregister_event_handler); |
| 700 | |
| 701 | /** |
| 702 | * ib_dispatch_event - Dispatch an asynchronous event |
| 703 | * @event:Event to dispatch |
| 704 | * |
| 705 | * Low-level drivers must call ib_dispatch_event() to dispatch the |
| 706 | * event to all registered event handlers when an asynchronous event |
| 707 | * occurs. |
| 708 | */ |
| 709 | void ib_dispatch_event(struct ib_event *event) |
| 710 | { |
| 711 | unsigned long flags; |
| 712 | struct ib_event_handler *handler; |
| 713 | |
| 714 | spin_lock_irqsave(&event->device->event_handler_lock, flags); |
| 715 | |
| 716 | list_for_each_entry(handler, &event->device->event_handler_list, list) |
| 717 | handler->handler(handler, event); |
| 718 | |
| 719 | spin_unlock_irqrestore(&event->device->event_handler_lock, flags); |
| 720 | } |
| 721 | EXPORT_SYMBOL(ib_dispatch_event); |
| 722 | |
| 723 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | * ib_query_port - Query IB port attributes |
| 725 | * @device:Device to query |
| 726 | * @port_num:Port number to query |
| 727 | * @port_attr:Port attributes |
| 728 | * |
| 729 | * ib_query_port() returns the attributes of a port through the |
| 730 | * @port_attr pointer. |
| 731 | */ |
| 732 | int ib_query_port(struct ib_device *device, |
| 733 | u8 port_num, |
| 734 | struct ib_port_attr *port_attr) |
| 735 | { |
Eli Cohen | fad61ad | 2016-03-11 22:58:36 +0200 | [diff] [blame] | 736 | union ib_gid gid; |
| 737 | int err; |
| 738 | |
Yuval Shaia | 24dc831 | 2017-01-25 18:41:37 +0200 | [diff] [blame] | 739 | if (!rdma_is_port_valid(device, port_num)) |
Roland Dreier | 116c007 | 2005-10-03 09:32:33 -0700 | [diff] [blame] | 740 | return -EINVAL; |
| 741 | |
Eli Cohen | fad61ad | 2016-03-11 22:58:36 +0200 | [diff] [blame] | 742 | memset(port_attr, 0, sizeof(*port_attr)); |
| 743 | err = device->query_port(device, port_num, port_attr); |
| 744 | if (err || port_attr->subnet_prefix) |
| 745 | return err; |
| 746 | |
Eli Cohen | d701246 | 2016-06-04 15:15:18 +0300 | [diff] [blame] | 747 | if (rdma_port_get_link_layer(device, port_num) != IB_LINK_LAYER_INFINIBAND) |
| 748 | return 0; |
| 749 | |
Eli Cohen | fad61ad | 2016-03-11 22:58:36 +0200 | [diff] [blame] | 750 | err = ib_query_gid(device, port_num, 0, &gid, NULL); |
| 751 | if (err) |
| 752 | return err; |
| 753 | |
| 754 | port_attr->subnet_prefix = be64_to_cpu(gid.global.subnet_prefix); |
| 755 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | } |
| 757 | EXPORT_SYMBOL(ib_query_port); |
| 758 | |
| 759 | /** |
| 760 | * ib_query_gid - Get GID table entry |
| 761 | * @device:Device to query |
| 762 | * @port_num:Port number to query |
| 763 | * @index:GID table index to query |
| 764 | * @gid:Returned GID |
Matan Barak | 55ee3ab | 2015-10-15 18:38:45 +0300 | [diff] [blame] | 765 | * @attr: Returned GID attributes related to this GID index (only in RoCE). |
| 766 | * NULL means ignore. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | * |
| 768 | * ib_query_gid() fetches the specified GID table entry. |
| 769 | */ |
| 770 | int ib_query_gid(struct ib_device *device, |
Matan Barak | 55ee3ab | 2015-10-15 18:38:45 +0300 | [diff] [blame] | 771 | u8 port_num, int index, union ib_gid *gid, |
| 772 | struct ib_gid_attr *attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | { |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 774 | if (rdma_cap_roce_gid_table(device, port_num)) |
Matan Barak | 55ee3ab | 2015-10-15 18:38:45 +0300 | [diff] [blame] | 775 | return ib_get_cached_gid(device, port_num, index, gid, attr); |
| 776 | |
| 777 | if (attr) |
| 778 | return -EINVAL; |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 779 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | return device->query_gid(device, port_num, index, gid); |
| 781 | } |
| 782 | EXPORT_SYMBOL(ib_query_gid); |
| 783 | |
| 784 | /** |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 785 | * ib_enum_roce_netdev - enumerate all RoCE ports |
| 786 | * @ib_dev : IB device we want to query |
| 787 | * @filter: Should we call the callback? |
| 788 | * @filter_cookie: Cookie passed to filter |
| 789 | * @cb: Callback to call for each found RoCE ports |
| 790 | * @cookie: Cookie passed back to the callback |
| 791 | * |
| 792 | * Enumerates all of the physical RoCE ports of ib_dev |
| 793 | * which are related to netdevice and calls callback() on each |
| 794 | * device for which filter() function returns non zero. |
| 795 | */ |
| 796 | void ib_enum_roce_netdev(struct ib_device *ib_dev, |
| 797 | roce_netdev_filter filter, |
| 798 | void *filter_cookie, |
| 799 | roce_netdev_callback cb, |
| 800 | void *cookie) |
| 801 | { |
| 802 | u8 port; |
| 803 | |
| 804 | for (port = rdma_start_port(ib_dev); port <= rdma_end_port(ib_dev); |
| 805 | port++) |
| 806 | if (rdma_protocol_roce(ib_dev, port)) { |
| 807 | struct net_device *idev = NULL; |
| 808 | |
| 809 | if (ib_dev->get_netdev) |
| 810 | idev = ib_dev->get_netdev(ib_dev, port); |
| 811 | |
| 812 | if (idev && |
| 813 | idev->reg_state >= NETREG_UNREGISTERED) { |
| 814 | dev_put(idev); |
| 815 | idev = NULL; |
| 816 | } |
| 817 | |
| 818 | if (filter(ib_dev, port, idev, filter_cookie)) |
| 819 | cb(ib_dev, port, idev, cookie); |
| 820 | |
| 821 | if (idev) |
| 822 | dev_put(idev); |
| 823 | } |
| 824 | } |
| 825 | |
| 826 | /** |
| 827 | * ib_enum_all_roce_netdevs - enumerate all RoCE devices |
| 828 | * @filter: Should we call the callback? |
| 829 | * @filter_cookie: Cookie passed to filter |
| 830 | * @cb: Callback to call for each found RoCE ports |
| 831 | * @cookie: Cookie passed back to the callback |
| 832 | * |
| 833 | * Enumerates all RoCE devices' physical ports which are related |
| 834 | * to netdevices and calls callback() on each device for which |
| 835 | * filter() function returns non zero. |
| 836 | */ |
| 837 | void ib_enum_all_roce_netdevs(roce_netdev_filter filter, |
| 838 | void *filter_cookie, |
| 839 | roce_netdev_callback cb, |
| 840 | void *cookie) |
| 841 | { |
| 842 | struct ib_device *dev; |
| 843 | |
| 844 | down_read(&lists_rwsem); |
| 845 | list_for_each_entry(dev, &device_list, core_list) |
| 846 | ib_enum_roce_netdev(dev, filter, filter_cookie, cb, cookie); |
| 847 | up_read(&lists_rwsem); |
| 848 | } |
| 849 | |
| 850 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | * ib_query_pkey - Get P_Key table entry |
| 852 | * @device:Device to query |
| 853 | * @port_num:Port number to query |
| 854 | * @index:P_Key table index to query |
| 855 | * @pkey:Returned P_Key |
| 856 | * |
| 857 | * ib_query_pkey() fetches the specified P_Key table entry. |
| 858 | */ |
| 859 | int ib_query_pkey(struct ib_device *device, |
| 860 | u8 port_num, u16 index, u16 *pkey) |
| 861 | { |
| 862 | return device->query_pkey(device, port_num, index, pkey); |
| 863 | } |
| 864 | EXPORT_SYMBOL(ib_query_pkey); |
| 865 | |
| 866 | /** |
| 867 | * ib_modify_device - Change IB device attributes |
| 868 | * @device:Device to modify |
| 869 | * @device_modify_mask:Mask of attributes to change |
| 870 | * @device_modify:New attribute values |
| 871 | * |
| 872 | * ib_modify_device() changes a device's attributes as specified by |
| 873 | * the @device_modify_mask and @device_modify structure. |
| 874 | */ |
| 875 | int ib_modify_device(struct ib_device *device, |
| 876 | int device_modify_mask, |
| 877 | struct ib_device_modify *device_modify) |
| 878 | { |
Bart Van Assche | 10e1b54 | 2011-06-18 16:35:42 +0000 | [diff] [blame] | 879 | if (!device->modify_device) |
| 880 | return -ENOSYS; |
| 881 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | return device->modify_device(device, device_modify_mask, |
| 883 | device_modify); |
| 884 | } |
| 885 | EXPORT_SYMBOL(ib_modify_device); |
| 886 | |
| 887 | /** |
| 888 | * ib_modify_port - Modifies the attributes for the specified port. |
| 889 | * @device: The device to modify. |
| 890 | * @port_num: The number of the port to modify. |
| 891 | * @port_modify_mask: Mask used to specify which attributes of the port |
| 892 | * to change. |
| 893 | * @port_modify: New attribute values for the port. |
| 894 | * |
| 895 | * ib_modify_port() changes a port's attributes as specified by the |
| 896 | * @port_modify_mask and @port_modify structure. |
| 897 | */ |
| 898 | int ib_modify_port(struct ib_device *device, |
| 899 | u8 port_num, int port_modify_mask, |
| 900 | struct ib_port_modify *port_modify) |
| 901 | { |
Bart Van Assche | 10e1b54 | 2011-06-18 16:35:42 +0000 | [diff] [blame] | 902 | if (!device->modify_port) |
| 903 | return -ENOSYS; |
| 904 | |
Yuval Shaia | 24dc831 | 2017-01-25 18:41:37 +0200 | [diff] [blame] | 905 | if (!rdma_is_port_valid(device, port_num)) |
Roland Dreier | 116c007 | 2005-10-03 09:32:33 -0700 | [diff] [blame] | 906 | return -EINVAL; |
| 907 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | return device->modify_port(device, port_num, port_modify_mask, |
| 909 | port_modify); |
| 910 | } |
| 911 | EXPORT_SYMBOL(ib_modify_port); |
| 912 | |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 913 | /** |
| 914 | * ib_find_gid - Returns the port number and GID table index where |
| 915 | * a specified GID value occurs. |
| 916 | * @device: The device to query. |
| 917 | * @gid: The GID value to search for. |
Matan Barak | b39ffa1 | 2015-12-23 14:56:47 +0200 | [diff] [blame] | 918 | * @gid_type: Type of GID. |
Matan Barak | 55ee3ab | 2015-10-15 18:38:45 +0300 | [diff] [blame] | 919 | * @ndev: The ndev related to the GID to search for. |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 920 | * @port_num: The port number of the device where the GID value was found. |
| 921 | * @index: The index into the GID table where the GID was found. This |
| 922 | * parameter may be NULL. |
| 923 | */ |
| 924 | int ib_find_gid(struct ib_device *device, union ib_gid *gid, |
Matan Barak | b39ffa1 | 2015-12-23 14:56:47 +0200 | [diff] [blame] | 925 | enum ib_gid_type gid_type, struct net_device *ndev, |
| 926 | u8 *port_num, u16 *index) |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 927 | { |
| 928 | union ib_gid tmp_gid; |
| 929 | int ret, port, i; |
| 930 | |
Ira Weiny | 0cf18d7 | 2015-05-13 20:02:55 -0400 | [diff] [blame] | 931 | for (port = rdma_start_port(device); port <= rdma_end_port(device); ++port) { |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 932 | if (rdma_cap_roce_gid_table(device, port)) { |
Matan Barak | b39ffa1 | 2015-12-23 14:56:47 +0200 | [diff] [blame] | 933 | if (!ib_find_cached_gid_by_port(device, gid, gid_type, port, |
Matan Barak | d300ec5 | 2015-10-15 18:38:46 +0300 | [diff] [blame] | 934 | ndev, index)) { |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 935 | *port_num = port; |
| 936 | return 0; |
Dan Carpenter | 98d25af | 2015-08-18 12:22:10 +0300 | [diff] [blame] | 937 | } |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 938 | } |
| 939 | |
Matan Barak | b39ffa1 | 2015-12-23 14:56:47 +0200 | [diff] [blame] | 940 | if (gid_type != IB_GID_TYPE_IB) |
| 941 | continue; |
| 942 | |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 943 | for (i = 0; i < device->port_immutable[port].gid_tbl_len; ++i) { |
Matan Barak | 55ee3ab | 2015-10-15 18:38:45 +0300 | [diff] [blame] | 944 | ret = ib_query_gid(device, port, i, &tmp_gid, NULL); |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 945 | if (ret) |
| 946 | return ret; |
| 947 | if (!memcmp(&tmp_gid, gid, sizeof *gid)) { |
| 948 | *port_num = port; |
| 949 | if (index) |
| 950 | *index = i; |
| 951 | return 0; |
| 952 | } |
| 953 | } |
| 954 | } |
| 955 | |
| 956 | return -ENOENT; |
| 957 | } |
| 958 | EXPORT_SYMBOL(ib_find_gid); |
| 959 | |
| 960 | /** |
| 961 | * ib_find_pkey - Returns the PKey table index where a specified |
| 962 | * PKey value occurs. |
| 963 | * @device: The device to query. |
| 964 | * @port_num: The port number of the device to search for the PKey. |
| 965 | * @pkey: The PKey value to search for. |
| 966 | * @index: The index into the PKey table where the PKey was found. |
| 967 | */ |
| 968 | int ib_find_pkey(struct ib_device *device, |
| 969 | u8 port_num, u16 pkey, u16 *index) |
| 970 | { |
| 971 | int ret, i; |
| 972 | u16 tmp_pkey; |
Jack Morgenstein | ff7166c | 2012-08-03 08:40:38 +0000 | [diff] [blame] | 973 | int partial_ix = -1; |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 974 | |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 975 | for (i = 0; i < device->port_immutable[port_num].pkey_tbl_len; ++i) { |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 976 | ret = ib_query_pkey(device, port_num, i, &tmp_pkey); |
| 977 | if (ret) |
| 978 | return ret; |
Moni Shoua | 36026ec | 2007-07-23 10:07:42 +0300 | [diff] [blame] | 979 | if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) { |
Jack Morgenstein | ff7166c | 2012-08-03 08:40:38 +0000 | [diff] [blame] | 980 | /* if there is full-member pkey take it.*/ |
| 981 | if (tmp_pkey & 0x8000) { |
| 982 | *index = i; |
| 983 | return 0; |
| 984 | } |
| 985 | if (partial_ix < 0) |
| 986 | partial_ix = i; |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 987 | } |
| 988 | } |
| 989 | |
Jack Morgenstein | ff7166c | 2012-08-03 08:40:38 +0000 | [diff] [blame] | 990 | /*no full-member, if exists take the limited*/ |
| 991 | if (partial_ix >= 0) { |
| 992 | *index = partial_ix; |
| 993 | return 0; |
| 994 | } |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 995 | return -ENOENT; |
| 996 | } |
| 997 | EXPORT_SYMBOL(ib_find_pkey); |
| 998 | |
Yotam Kenneth | 9268f72 | 2015-07-30 17:50:15 +0300 | [diff] [blame] | 999 | /** |
| 1000 | * ib_get_net_dev_by_params() - Return the appropriate net_dev |
| 1001 | * for a received CM request |
| 1002 | * @dev: An RDMA device on which the request has been received. |
| 1003 | * @port: Port number on the RDMA device. |
| 1004 | * @pkey: The Pkey the request came on. |
| 1005 | * @gid: A GID that the net_dev uses to communicate. |
| 1006 | * @addr: Contains the IP address that the request specified as its |
| 1007 | * destination. |
| 1008 | */ |
| 1009 | struct net_device *ib_get_net_dev_by_params(struct ib_device *dev, |
| 1010 | u8 port, |
| 1011 | u16 pkey, |
| 1012 | const union ib_gid *gid, |
| 1013 | const struct sockaddr *addr) |
| 1014 | { |
| 1015 | struct net_device *net_dev = NULL; |
| 1016 | struct ib_client_data *context; |
| 1017 | |
| 1018 | if (!rdma_protocol_ib(dev, port)) |
| 1019 | return NULL; |
| 1020 | |
| 1021 | down_read(&lists_rwsem); |
| 1022 | |
| 1023 | list_for_each_entry(context, &dev->client_data_list, list) { |
| 1024 | struct ib_client *client = context->client; |
| 1025 | |
| 1026 | if (context->going_down) |
| 1027 | continue; |
| 1028 | |
| 1029 | if (client->get_net_dev_by_params) { |
| 1030 | net_dev = client->get_net_dev_by_params(dev, port, pkey, |
| 1031 | gid, addr, |
| 1032 | context->data); |
| 1033 | if (net_dev) |
| 1034 | break; |
| 1035 | } |
| 1036 | } |
| 1037 | |
| 1038 | up_read(&lists_rwsem); |
| 1039 | |
| 1040 | return net_dev; |
| 1041 | } |
| 1042 | EXPORT_SYMBOL(ib_get_net_dev_by_params); |
| 1043 | |
Mark Bloch | 735c631 | 2016-05-19 17:12:35 +0300 | [diff] [blame] | 1044 | static struct ibnl_client_cbs ibnl_ls_cb_table[] = { |
| 1045 | [RDMA_NL_LS_OP_RESOLVE] = { |
| 1046 | .dump = ib_nl_handle_resolve_resp, |
| 1047 | .module = THIS_MODULE }, |
| 1048 | [RDMA_NL_LS_OP_SET_TIMEOUT] = { |
| 1049 | .dump = ib_nl_handle_set_timeout, |
| 1050 | .module = THIS_MODULE }, |
Mark Bloch | ae43f82 | 2016-05-19 17:12:36 +0300 | [diff] [blame] | 1051 | [RDMA_NL_LS_OP_IP_RESOLVE] = { |
| 1052 | .dump = ib_nl_handle_ip_res_resp, |
| 1053 | .module = THIS_MODULE }, |
Mark Bloch | 735c631 | 2016-05-19 17:12:35 +0300 | [diff] [blame] | 1054 | }; |
| 1055 | |
| 1056 | static int ib_add_ibnl_clients(void) |
| 1057 | { |
| 1058 | return ibnl_add_client(RDMA_NL_LS, ARRAY_SIZE(ibnl_ls_cb_table), |
| 1059 | ibnl_ls_cb_table); |
| 1060 | } |
| 1061 | |
| 1062 | static void ib_remove_ibnl_clients(void) |
| 1063 | { |
| 1064 | ibnl_remove_client(RDMA_NL_LS); |
| 1065 | } |
| 1066 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | static int __init ib_core_init(void) |
| 1068 | { |
| 1069 | int ret; |
| 1070 | |
Tejun Heo | f062671 | 2010-10-19 15:24:36 +0000 | [diff] [blame] | 1071 | ib_wq = alloc_workqueue("infiniband", 0, 0); |
| 1072 | if (!ib_wq) |
| 1073 | return -ENOMEM; |
| 1074 | |
Christoph Hellwig | 14d3a3b | 2015-12-11 11:53:03 -0800 | [diff] [blame] | 1075 | ib_comp_wq = alloc_workqueue("ib-comp-wq", |
Sagi Grimberg | b7363e6 | 2017-03-08 22:03:17 +0200 | [diff] [blame] | 1076 | WQ_HIGHPRI | WQ_MEM_RECLAIM | WQ_SYSFS, 0); |
Christoph Hellwig | 14d3a3b | 2015-12-11 11:53:03 -0800 | [diff] [blame] | 1077 | if (!ib_comp_wq) { |
| 1078 | ret = -ENOMEM; |
| 1079 | goto err; |
| 1080 | } |
| 1081 | |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 1082 | ret = class_register(&ib_class); |
Nir Muchtar | fd75c78 | 2011-05-20 11:46:10 -0700 | [diff] [blame] | 1083 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 1084 | pr_warn("Couldn't create InfiniBand device class\n"); |
Christoph Hellwig | 14d3a3b | 2015-12-11 11:53:03 -0800 | [diff] [blame] | 1085 | goto err_comp; |
Nir Muchtar | fd75c78 | 2011-05-20 11:46:10 -0700 | [diff] [blame] | 1086 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | |
Roland Dreier | b2cbae2 | 2011-05-20 11:46:11 -0700 | [diff] [blame] | 1088 | ret = ibnl_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 1090 | pr_warn("Couldn't init IB netlink interface\n"); |
Nir Muchtar | fd75c78 | 2011-05-20 11:46:10 -0700 | [diff] [blame] | 1091 | goto err_sysfs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | } |
| 1093 | |
Leon Romanovsky | e3f20f0 | 2016-05-19 17:12:31 +0300 | [diff] [blame] | 1094 | ret = addr_init(); |
| 1095 | if (ret) { |
| 1096 | pr_warn("Could't init IB address resolution\n"); |
| 1097 | goto err_ibnl; |
| 1098 | } |
| 1099 | |
Mark Bloch | 4c2cb42 | 2016-05-19 17:12:32 +0300 | [diff] [blame] | 1100 | ret = ib_mad_init(); |
| 1101 | if (ret) { |
| 1102 | pr_warn("Couldn't init IB MAD\n"); |
| 1103 | goto err_addr; |
| 1104 | } |
| 1105 | |
Mark Bloch | c2e49c9 | 2016-05-19 17:12:33 +0300 | [diff] [blame] | 1106 | ret = ib_sa_init(); |
| 1107 | if (ret) { |
| 1108 | pr_warn("Couldn't init SA\n"); |
| 1109 | goto err_mad; |
| 1110 | } |
| 1111 | |
Dan Carpenter | da1f857 | 2016-05-31 19:05:56 +0300 | [diff] [blame] | 1112 | ret = ib_add_ibnl_clients(); |
| 1113 | if (ret) { |
Mark Bloch | 735c631 | 2016-05-19 17:12:35 +0300 | [diff] [blame] | 1114 | pr_warn("Couldn't register ibnl clients\n"); |
| 1115 | goto err_sa; |
| 1116 | } |
| 1117 | |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 1118 | ib_cache_setup(); |
Roland Dreier | b2cbae2 | 2011-05-20 11:46:11 -0700 | [diff] [blame] | 1119 | |
Nir Muchtar | fd75c78 | 2011-05-20 11:46:10 -0700 | [diff] [blame] | 1120 | return 0; |
| 1121 | |
Mark Bloch | 735c631 | 2016-05-19 17:12:35 +0300 | [diff] [blame] | 1122 | err_sa: |
| 1123 | ib_sa_cleanup(); |
Mark Bloch | c2e49c9 | 2016-05-19 17:12:33 +0300 | [diff] [blame] | 1124 | err_mad: |
| 1125 | ib_mad_cleanup(); |
Mark Bloch | 4c2cb42 | 2016-05-19 17:12:32 +0300 | [diff] [blame] | 1126 | err_addr: |
| 1127 | addr_cleanup(); |
Leon Romanovsky | e3f20f0 | 2016-05-19 17:12:31 +0300 | [diff] [blame] | 1128 | err_ibnl: |
| 1129 | ibnl_cleanup(); |
Nir Muchtar | fd75c78 | 2011-05-20 11:46:10 -0700 | [diff] [blame] | 1130 | err_sysfs: |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 1131 | class_unregister(&ib_class); |
Christoph Hellwig | 14d3a3b | 2015-12-11 11:53:03 -0800 | [diff] [blame] | 1132 | err_comp: |
| 1133 | destroy_workqueue(ib_comp_wq); |
Nir Muchtar | fd75c78 | 2011-05-20 11:46:10 -0700 | [diff] [blame] | 1134 | err: |
| 1135 | destroy_workqueue(ib_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | return ret; |
| 1137 | } |
| 1138 | |
| 1139 | static void __exit ib_core_cleanup(void) |
| 1140 | { |
| 1141 | ib_cache_cleanup(); |
Mark Bloch | 735c631 | 2016-05-19 17:12:35 +0300 | [diff] [blame] | 1142 | ib_remove_ibnl_clients(); |
Mark Bloch | c2e49c9 | 2016-05-19 17:12:33 +0300 | [diff] [blame] | 1143 | ib_sa_cleanup(); |
Mark Bloch | 4c2cb42 | 2016-05-19 17:12:32 +0300 | [diff] [blame] | 1144 | ib_mad_cleanup(); |
Leon Romanovsky | e3f20f0 | 2016-05-19 17:12:31 +0300 | [diff] [blame] | 1145 | addr_cleanup(); |
Roland Dreier | b2cbae2 | 2011-05-20 11:46:11 -0700 | [diff] [blame] | 1146 | ibnl_cleanup(); |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 1147 | class_unregister(&ib_class); |
Christoph Hellwig | 14d3a3b | 2015-12-11 11:53:03 -0800 | [diff] [blame] | 1148 | destroy_workqueue(ib_comp_wq); |
Roland Dreier | f7c6a7b | 2007-03-04 16:15:11 -0800 | [diff] [blame] | 1149 | /* Make sure that any pending umem accounting work is done. */ |
Tejun Heo | f062671 | 2010-10-19 15:24:36 +0000 | [diff] [blame] | 1150 | destroy_workqueue(ib_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | } |
| 1152 | |
| 1153 | module_init(ib_core_init); |
| 1154 | module_exit(ib_core_cleanup); |