1 /*
2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
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.
32 */
33
34 #include <linux/module.h>
35 #include <linux/string.h>
36 #include <linux/errno.h>
37 #include <linux/kernel.h>
38 #include <linux/slab.h>
39 #include <linux/mutex.h>
40
41 #include "core_priv.h"
42
43 MODULE_AUTHOR("Roland Dreier");
44 MODULE_DESCRIPTION("core kernel InfiniBand API");
45 MODULE_LICENSE("Dual BSD/GPL");
46
47 struct ib_client_data {
48 struct list_head list;
49 struct ib_client *client;
50 void * data;
51 };
52
53 struct workqueue_struct *ib_wq;
54 EXPORT_SYMBOL_GPL(ib_wq);
55
56 static LIST_HEAD(device_list);
57 static LIST_HEAD(client_list);
58
59 /*
60 * device_mutex protects access to both device_list and client_list.
61 * There's no real point to using multiple locks or something fancier
62 * like an rwsem: we always access both lists, and we're always
63 * modifying one list or the other list. In any case this is not a
64 * hot path so there's no point in trying to optimize.
65 */
66 static DEFINE_MUTEX(device_mutex);
67
ib_device_check_mandatory(struct ib_device * device)68 static int ib_device_check_mandatory(struct ib_device *device)
69 {
70 #define IB_MANDATORY_FUNC(x) { offsetof(struct ib_device, x), #x }
71 static const struct {
72 size_t offset;
73 char *name;
74 } mandatory_table[] = {
75 IB_MANDATORY_FUNC(query_device),
76 IB_MANDATORY_FUNC(query_port),
77 IB_MANDATORY_FUNC(query_pkey),
78 IB_MANDATORY_FUNC(query_gid),
79 IB_MANDATORY_FUNC(alloc_pd),
80 IB_MANDATORY_FUNC(dealloc_pd),
81 IB_MANDATORY_FUNC(create_ah),
82 IB_MANDATORY_FUNC(destroy_ah),
83 IB_MANDATORY_FUNC(create_qp),
84 IB_MANDATORY_FUNC(modify_qp),
85 IB_MANDATORY_FUNC(destroy_qp),
86 IB_MANDATORY_FUNC(post_send),
87 IB_MANDATORY_FUNC(post_recv),
88 IB_MANDATORY_FUNC(create_cq),
89 IB_MANDATORY_FUNC(destroy_cq),
90 IB_MANDATORY_FUNC(poll_cq),
91 IB_MANDATORY_FUNC(req_notify_cq),
92 IB_MANDATORY_FUNC(get_dma_mr),
93 IB_MANDATORY_FUNC(dereg_mr)
94 };
95 int i;
96
97 for (i = 0; i < ARRAY_SIZE(mandatory_table); ++i) {
98 if (!*(void **) ((void *) device + mandatory_table[i].offset)) {
99 printk(KERN_WARNING "Device %s is missing mandatory function %s\n",
100 device->name, mandatory_table[i].name);
101 return -EINVAL;
102 }
103 }
104
105 return 0;
106 }
107
__ib_device_get_by_name(const char * name)108 static struct ib_device *__ib_device_get_by_name(const char *name)
109 {
110 struct ib_device *device;
111
112 list_for_each_entry(device, &device_list, core_list)
113 if (!strncmp(name, device->name, IB_DEVICE_NAME_MAX))
114 return device;
115
116 return NULL;
117 }
118
119
alloc_name(char * name)120 static int alloc_name(char *name)
121 {
122 unsigned long *inuse;
123 char buf[IB_DEVICE_NAME_MAX];
124 struct ib_device *device;
125 int i;
126
127 inuse = (unsigned long *) get_zeroed_page(GFP_KERNEL);
128 if (!inuse)
129 return -ENOMEM;
130
131 list_for_each_entry(device, &device_list, core_list) {
132 if (!sscanf(device->name, name, &i))
133 continue;
134 if (i < 0 || i >= PAGE_SIZE * 8)
135 continue;
136 snprintf(buf, sizeof buf, name, i);
137 if (!strncmp(buf, device->name, IB_DEVICE_NAME_MAX))
138 set_bit(i, inuse);
139 }
140
141 i = find_first_zero_bit(inuse, PAGE_SIZE * 8);
142 free_page((unsigned long) inuse);
143 snprintf(buf, sizeof buf, name, i);
144
145 if (__ib_device_get_by_name(buf))
146 return -ENFILE;
147
148 strlcpy(name, buf, IB_DEVICE_NAME_MAX);
149 return 0;
150 }
151
start_port(struct ib_device * device)152 static int start_port(struct ib_device *device)
153 {
154 return (device->node_type == RDMA_NODE_IB_SWITCH) ? 0 : 1;
155 }
156
157
end_port(struct ib_device * device)158 static int end_port(struct ib_device *device)
159 {
160 return (device->node_type == RDMA_NODE_IB_SWITCH) ?
161 0 : device->phys_port_cnt;
162 }
163
164 /**
165 * ib_alloc_device - allocate an IB device struct
166 * @size:size of structure to allocate
167 *
168 * Low-level drivers should use ib_alloc_device() to allocate &struct
169 * ib_device. @size is the size of the structure to be allocated,
170 * including any private data used by the low-level driver.
171 * ib_dealloc_device() must be used to free structures allocated with
172 * ib_alloc_device().
173 */
ib_alloc_device(size_t size)174 struct ib_device *ib_alloc_device(size_t size)
175 {
176 struct ib_device *dev;
177
178 BUG_ON(size < sizeof (struct ib_device));
179
180 dev = kzalloc(size, GFP_KERNEL);
181 spin_lock_init(&dev->cmd_perf_lock);
182
183 return dev;
184 }
185 EXPORT_SYMBOL(ib_alloc_device);
186
187 /**
188 * ib_dealloc_device - free an IB device struct
189 * @device:structure to free
190 *
191 * Free a structure allocated with ib_alloc_device().
192 */
ib_dealloc_device(struct ib_device * device)193 void ib_dealloc_device(struct ib_device *device)
194 {
195 if (device->reg_state == IB_DEV_UNINITIALIZED) {
196 kfree(device);
197 return;
198 }
199
200 BUG_ON(device->reg_state != IB_DEV_UNREGISTERED);
201
202 kobject_put(&device->dev.kobj);
203 }
204 EXPORT_SYMBOL(ib_dealloc_device);
205
add_client_context(struct ib_device * device,struct ib_client * client)206 static int add_client_context(struct ib_device *device, struct ib_client *client)
207 {
208 struct ib_client_data *context;
209 unsigned long flags;
210
211 context = kmalloc(sizeof *context, GFP_KERNEL);
212 if (!context) {
213 printk(KERN_WARNING "Couldn't allocate client context for %s/%s\n",
214 device->name, client->name);
215 return -ENOMEM;
216 }
217
218 context->client = client;
219 context->data = NULL;
220
221 spin_lock_irqsave(&device->client_data_lock, flags);
222 list_add(&context->list, &device->client_data_list);
223 spin_unlock_irqrestore(&device->client_data_lock, flags);
224
225 return 0;
226 }
227
read_port_table_lengths(struct ib_device * device)228 static int read_port_table_lengths(struct ib_device *device)
229 {
230 struct ib_port_attr *tprops = NULL;
231 int num_ports, ret = -ENOMEM;
232 u8 port_index;
233
234 tprops = kmalloc(sizeof *tprops, GFP_KERNEL);
235 if (!tprops)
236 goto out;
237
238 num_ports = end_port(device) - start_port(device) + 1;
239
240 device->pkey_tbl_len = kmalloc(sizeof *device->pkey_tbl_len * num_ports,
241 GFP_KERNEL);
242 device->gid_tbl_len = kmalloc(sizeof *device->gid_tbl_len * num_ports,
243 GFP_KERNEL);
244 if (!device->pkey_tbl_len || !device->gid_tbl_len)
245 goto err;
246
247 for (port_index = 0; port_index < num_ports; ++port_index) {
248 ret = ib_query_port(device, port_index + start_port(device),
249 tprops);
250 if (ret)
251 goto err;
252 device->pkey_tbl_len[port_index] = tprops->pkey_tbl_len;
253 device->gid_tbl_len[port_index] = tprops->gid_tbl_len;
254 }
255
256 ret = 0;
257 goto out;
258
259 err:
260 kfree(device->gid_tbl_len);
261 kfree(device->pkey_tbl_len);
262 out:
263 kfree(tprops);
264 return ret;
265 }
266
267 /**
268 * ib_register_device - Register an IB device with IB core
269 * @device:Device to register
270 *
271 * Low-level drivers use ib_register_device() to register their
272 * devices with the IB core. All registered clients will receive a
273 * callback for each device that is added. @device must be allocated
274 * with ib_alloc_device().
275 */
ib_register_device(struct ib_device * device,int (* port_callback)(struct ib_device *,u8,struct kobject *))276 int ib_register_device(struct ib_device *device,
277 int (*port_callback)(struct ib_device *,
278 u8, struct kobject *))
279 {
280 int ret;
281
282 mutex_lock(&device_mutex);
283
284 if (strchr(device->name, '%')) {
285 ret = alloc_name(device->name);
286 if (ret)
287 goto out;
288 }
289
290 if (ib_device_check_mandatory(device)) {
291 ret = -EINVAL;
292 goto out;
293 }
294
295 INIT_LIST_HEAD(&device->event_handler_list);
296 INIT_LIST_HEAD(&device->client_data_list);
297 spin_lock_init(&device->event_handler_lock);
298 spin_lock_init(&device->client_data_lock);
299
300 ret = read_port_table_lengths(device);
301 if (ret) {
302 printk(KERN_WARNING "Couldn't create table lengths cache for device %s\n",
303 device->name);
304 goto out;
305 }
306
307 ret = ib_device_register_sysfs(device, port_callback);
308 if (ret) {
309 printk(KERN_WARNING "Couldn't register device %s with driver model\n",
310 device->name);
311 kfree(device->gid_tbl_len);
312 kfree(device->pkey_tbl_len);
313 goto out;
314 }
315
316 list_add_tail(&device->core_list, &device_list);
317
318 device->reg_state = IB_DEV_REGISTERED;
319
320 {
321 struct ib_client *client;
322
323 list_for_each_entry(client, &client_list, list)
324 if (client->add && !add_client_context(device, client))
325 client->add(device);
326 }
327
328 out:
329 mutex_unlock(&device_mutex);
330 return ret;
331 }
332 EXPORT_SYMBOL(ib_register_device);
333
334 /**
335 * ib_unregister_device - Unregister an IB device
336 * @device:Device to unregister
337 *
338 * Unregister an IB device. All clients will receive a remove callback.
339 */
ib_unregister_device(struct ib_device * device)340 void ib_unregister_device(struct ib_device *device)
341 {
342 struct ib_client *client;
343 struct ib_client_data *context, *tmp;
344 unsigned long flags;
345
346 mutex_lock(&device_mutex);
347
348 list_for_each_entry_reverse(client, &client_list, list)
349 if (client->remove)
350 client->remove(device);
351
352 list_del(&device->core_list);
353
354 kfree(device->gid_tbl_len);
355 kfree(device->pkey_tbl_len);
356
357 mutex_unlock(&device_mutex);
358
359 ib_device_unregister_sysfs(device);
360
361 spin_lock_irqsave(&device->client_data_lock, flags);
362 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
363 kfree(context);
364 spin_unlock_irqrestore(&device->client_data_lock, flags);
365
366 device->reg_state = IB_DEV_UNREGISTERED;
367 }
368 EXPORT_SYMBOL(ib_unregister_device);
369
370 /**
371 * ib_register_client - Register an IB client
372 * @client:Client to register
373 *
374 * Upper level users of the IB drivers can use ib_register_client() to
375 * register callbacks for IB device addition and removal. When an IB
376 * device is added, each registered client's add method will be called
377 * (in the order the clients were registered), and when a device is
378 * removed, each client's remove method will be called (in the reverse
379 * order that clients were registered). In addition, when
380 * ib_register_client() is called, the client will receive an add
381 * callback for all devices already registered.
382 */
ib_register_client(struct ib_client * client)383 int ib_register_client(struct ib_client *client)
384 {
385 struct ib_device *device;
386
387 mutex_lock(&device_mutex);
388
389 list_add_tail(&client->list, &client_list);
390 list_for_each_entry(device, &device_list, core_list)
391 if (client->add && !add_client_context(device, client))
392 client->add(device);
393
394 mutex_unlock(&device_mutex);
395
396 return 0;
397 }
398 EXPORT_SYMBOL(ib_register_client);
399
400 /**
401 * ib_unregister_client - Unregister an IB client
402 * @client:Client to unregister
403 *
404 * Upper level users use ib_unregister_client() to remove their client
405 * registration. When ib_unregister_client() is called, the client
406 * will receive a remove callback for each IB device still registered.
407 */
ib_unregister_client(struct ib_client * client)408 void ib_unregister_client(struct ib_client *client)
409 {
410 struct ib_client_data *context, *tmp;
411 struct ib_device *device;
412 unsigned long flags;
413
414 mutex_lock(&device_mutex);
415
416 list_for_each_entry(device, &device_list, core_list) {
417 if (client->remove)
418 client->remove(device);
419
420 spin_lock_irqsave(&device->client_data_lock, flags);
421 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
422 if (context->client == client) {
423 list_del(&context->list);
424 kfree(context);
425 }
426 spin_unlock_irqrestore(&device->client_data_lock, flags);
427 }
428 list_del(&client->list);
429
430 mutex_unlock(&device_mutex);
431 }
432 EXPORT_SYMBOL(ib_unregister_client);
433
434 /**
435 * ib_get_client_data - Get IB client context
436 * @device:Device to get context for
437 * @client:Client to get context for
438 *
439 * ib_get_client_data() returns client context set with
440 * ib_set_client_data().
441 */
ib_get_client_data(struct ib_device * device,struct ib_client * client)442 void *ib_get_client_data(struct ib_device *device, struct ib_client *client)
443 {
444 struct ib_client_data *context;
445 void *ret = NULL;
446 unsigned long flags;
447
448 spin_lock_irqsave(&device->client_data_lock, flags);
449 list_for_each_entry(context, &device->client_data_list, list)
450 if (context->client == client) {
451 ret = context->data;
452 break;
453 }
454 spin_unlock_irqrestore(&device->client_data_lock, flags);
455
456 return ret;
457 }
458 EXPORT_SYMBOL(ib_get_client_data);
459
460 /**
461 * ib_set_client_data - Set IB client context
462 * @device:Device to set context for
463 * @client:Client to set context for
464 * @data:Context to set
465 *
466 * ib_set_client_data() sets client context that can be retrieved with
467 * ib_get_client_data().
468 */
ib_set_client_data(struct ib_device * device,struct ib_client * client,void * data)469 void ib_set_client_data(struct ib_device *device, struct ib_client *client,
470 void *data)
471 {
472 struct ib_client_data *context;
473 unsigned long flags;
474
475 spin_lock_irqsave(&device->client_data_lock, flags);
476 list_for_each_entry(context, &device->client_data_list, list)
477 if (context->client == client) {
478 context->data = data;
479 goto out;
480 }
481
482 printk(KERN_WARNING "No client context found for %s/%s\n",
483 device->name, client->name);
484
485 out:
486 spin_unlock_irqrestore(&device->client_data_lock, flags);
487 }
488 EXPORT_SYMBOL(ib_set_client_data);
489
490 /**
491 * ib_register_event_handler - Register an IB event handler
492 * @event_handler:Handler to register
493 *
494 * ib_register_event_handler() registers an event handler that will be
495 * called back when asynchronous IB events occur (as defined in
496 * chapter 11 of the InfiniBand Architecture Specification). This
497 * callback may occur in interrupt context.
498 */
ib_register_event_handler(struct ib_event_handler * event_handler)499 int ib_register_event_handler (struct ib_event_handler *event_handler)
500 {
501 unsigned long flags;
502
503 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
504 list_add_tail(&event_handler->list,
505 &event_handler->device->event_handler_list);
506 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
507
508 return 0;
509 }
510 EXPORT_SYMBOL(ib_register_event_handler);
511
512 /**
513 * ib_unregister_event_handler - Unregister an event handler
514 * @event_handler:Handler to unregister
515 *
516 * Unregister an event handler registered with
517 * ib_register_event_handler().
518 */
ib_unregister_event_handler(struct ib_event_handler * event_handler)519 int ib_unregister_event_handler(struct ib_event_handler *event_handler)
520 {
521 unsigned long flags;
522
523 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
524 list_del(&event_handler->list);
525 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
526
527 return 0;
528 }
529 EXPORT_SYMBOL(ib_unregister_event_handler);
530
531 /**
532 * ib_dispatch_event - Dispatch an asynchronous event
533 * @event:Event to dispatch
534 *
535 * Low-level drivers must call ib_dispatch_event() to dispatch the
536 * event to all registered event handlers when an asynchronous event
537 * occurs.
538 */
ib_dispatch_event(struct ib_event * event)539 void ib_dispatch_event(struct ib_event *event)
540 {
541 unsigned long flags;
542 struct ib_event_handler *handler;
543
544 spin_lock_irqsave(&event->device->event_handler_lock, flags);
545
546 list_for_each_entry(handler, &event->device->event_handler_list, list)
547 handler->handler(handler, event);
548
549 spin_unlock_irqrestore(&event->device->event_handler_lock, flags);
550 }
551 EXPORT_SYMBOL(ib_dispatch_event);
552
553 /**
554 * ib_query_device - Query IB device attributes
555 * @device:Device to query
556 * @device_attr:Device attributes
557 *
558 * ib_query_device() returns the attributes of a device through the
559 * @device_attr pointer.
560 */
ib_query_device(struct ib_device * device,struct ib_device_attr * device_attr)561 int ib_query_device(struct ib_device *device,
562 struct ib_device_attr *device_attr)
563 {
564 return device->query_device(device, device_attr);
565 }
566 EXPORT_SYMBOL(ib_query_device);
567
568 /**
569 * ib_query_port - Query IB port attributes
570 * @device:Device to query
571 * @port_num:Port number to query
572 * @port_attr:Port attributes
573 *
574 * ib_query_port() returns the attributes of a port through the
575 * @port_attr pointer.
576 */
ib_query_port(struct ib_device * device,u8 port_num,struct ib_port_attr * port_attr)577 int ib_query_port(struct ib_device *device,
578 u8 port_num,
579 struct ib_port_attr *port_attr)
580 {
581 if (port_num < start_port(device) || port_num > end_port(device))
582 return -EINVAL;
583
584 return device->query_port(device, port_num, port_attr);
585 }
586 EXPORT_SYMBOL(ib_query_port);
587
588 /**
589 * ib_query_gid - Get GID table entry
590 * @device:Device to query
591 * @port_num:Port number to query
592 * @index:GID table index to query
593 * @gid:Returned GID
594 *
595 * ib_query_gid() fetches the specified GID table entry.
596 */
ib_query_gid(struct ib_device * device,u8 port_num,int index,union ib_gid * gid)597 int ib_query_gid(struct ib_device *device,
598 u8 port_num, int index, union ib_gid *gid)
599 {
600 return device->query_gid(device, port_num, index, gid);
601 }
602 EXPORT_SYMBOL(ib_query_gid);
603
604 /**
605 * ib_query_pkey - Get P_Key table entry
606 * @device:Device to query
607 * @port_num:Port number to query
608 * @index:P_Key table index to query
609 * @pkey:Returned P_Key
610 *
611 * ib_query_pkey() fetches the specified P_Key table entry.
612 */
ib_query_pkey(struct ib_device * device,u8 port_num,u16 index,u16 * pkey)613 int ib_query_pkey(struct ib_device *device,
614 u8 port_num, u16 index, u16 *pkey)
615 {
616 return device->query_pkey(device, port_num, index, pkey);
617 }
618 EXPORT_SYMBOL(ib_query_pkey);
619
620 /**
621 * ib_modify_device - Change IB device attributes
622 * @device:Device to modify
623 * @device_modify_mask:Mask of attributes to change
624 * @device_modify:New attribute values
625 *
626 * ib_modify_device() changes a device's attributes as specified by
627 * the @device_modify_mask and @device_modify structure.
628 */
ib_modify_device(struct ib_device * device,int device_modify_mask,struct ib_device_modify * device_modify)629 int ib_modify_device(struct ib_device *device,
630 int device_modify_mask,
631 struct ib_device_modify *device_modify)
632 {
633 if (!device->modify_device)
634 return -ENOSYS;
635
636 return device->modify_device(device, device_modify_mask,
637 device_modify);
638 }
639 EXPORT_SYMBOL(ib_modify_device);
640
641 /**
642 * ib_modify_port - Modifies the attributes for the specified port.
643 * @device: The device to modify.
644 * @port_num: The number of the port to modify.
645 * @port_modify_mask: Mask used to specify which attributes of the port
646 * to change.
647 * @port_modify: New attribute values for the port.
648 *
649 * ib_modify_port() changes a port's attributes as specified by the
650 * @port_modify_mask and @port_modify structure.
651 */
ib_modify_port(struct ib_device * device,u8 port_num,int port_modify_mask,struct ib_port_modify * port_modify)652 int ib_modify_port(struct ib_device *device,
653 u8 port_num, int port_modify_mask,
654 struct ib_port_modify *port_modify)
655 {
656 if (!device->modify_port)
657 return -ENOSYS;
658
659 if (port_num < start_port(device) || port_num > end_port(device))
660 return -EINVAL;
661
662 return device->modify_port(device, port_num, port_modify_mask,
663 port_modify);
664 }
665 EXPORT_SYMBOL(ib_modify_port);
666
667 /**
668 * ib_find_gid - Returns the port number and GID table index where
669 * a specified GID value occurs.
670 * @device: The device to query.
671 * @gid: The GID value to search for.
672 * @port_num: The port number of the device where the GID value was found.
673 * @index: The index into the GID table where the GID was found. This
674 * parameter may be NULL.
675 */
ib_find_gid(struct ib_device * device,union ib_gid * gid,u8 * port_num,u16 * index)676 int ib_find_gid(struct ib_device *device, union ib_gid *gid,
677 u8 *port_num, u16 *index)
678 {
679 union ib_gid tmp_gid;
680 int ret, port, i;
681
682 for (port = start_port(device); port <= end_port(device); ++port) {
683 for (i = 0; i < device->gid_tbl_len[port - start_port(device)]; ++i) {
684 ret = ib_query_gid(device, port, i, &tmp_gid);
685 if (ret)
686 return ret;
687 if (!memcmp(&tmp_gid, gid, sizeof *gid)) {
688 *port_num = port;
689 if (index)
690 *index = i;
691 return 0;
692 }
693 }
694 }
695
696 return -ENOENT;
697 }
698 EXPORT_SYMBOL(ib_find_gid);
699
700 /**
701 * ib_find_pkey - Returns the PKey table index where a specified
702 * PKey value occurs.
703 * @device: The device to query.
704 * @port_num: The port number of the device to search for the PKey.
705 * @pkey: The PKey value to search for.
706 * @index: The index into the PKey table where the PKey was found.
707 */
ib_find_pkey(struct ib_device * device,u8 port_num,u16 pkey,u16 * index)708 int ib_find_pkey(struct ib_device *device,
709 u8 port_num, u16 pkey, u16 *index)
710 {
711 int ret, i;
712 u16 tmp_pkey;
713 int partial_ix = -1;
714
715 for (i = 0; i < device->pkey_tbl_len[port_num - start_port(device)]; ++i) {
716 ret = ib_query_pkey(device, port_num, i, &tmp_pkey);
717 if (ret)
718 return ret;
719 if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) {
720 /* if there is full-member pkey take it.*/
721 if (tmp_pkey & 0x8000) {
722 *index = i;
723 return 0;
724 }
725 if (partial_ix < 0)
726 partial_ix = i;
727 }
728 }
729
730 /*no full-member, if exists take the limited*/
731 if (partial_ix >= 0) {
732 *index = partial_ix;
733 return 0;
734 }
735 return -ENOENT;
736 }
737 EXPORT_SYMBOL(ib_find_pkey);
738
ib_core_init(void)739 static int __init ib_core_init(void)
740 {
741 int ret;
742
743 ib_wq = create_workqueue("infiniband");
744 if (!ib_wq)
745 return -ENOMEM;
746
747 ret = ib_sysfs_setup();
748 if (ret) {
749 printk(KERN_WARNING "Couldn't create InfiniBand device class\n");
750 goto err;
751 }
752
753 ret = ib_cache_setup();
754 if (ret) {
755 printk(KERN_WARNING "Couldn't set up InfiniBand P_Key/GID cache\n");
756 goto err_sysfs;
757 }
758
759 return 0;
760
761 err_sysfs:
762 ib_sysfs_cleanup();
763
764 err:
765 destroy_workqueue(ib_wq);
766 return ret;
767 }
768
ib_core_cleanup(void)769 static void __exit ib_core_cleanup(void)
770 {
771 ib_cache_cleanup();
772 ib_sysfs_cleanup();
773 /* Make sure that any pending umem accounting work is done. */
774 destroy_workqueue(ib_wq);
775 }
776
777 module_init(ib_core_init);
778 module_exit(ib_core_cleanup);
779
780 static int
ibcore_evhand(module_t mod,int event,void * arg)781 ibcore_evhand(module_t mod, int event, void *arg)
782 {
783 return (0);
784 }
785
786 static moduledata_t ibcore_mod = {
787 .name = "ibcore",
788 .evhand = ibcore_evhand,
789 };
790
791 MODULE_VERSION(ibcore, 1);
792 MODULE_DEPEND(ibcore, linuxkpi, 1, 1, 1);
793 DECLARE_MODULE(ibcore, ibcore_mod, SI_SUB_SMP, SI_ORDER_ANY);
794