1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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/init.h>
40#include <linux/mutex.h>
41#include <linux/netdevice.h>
42#include <rdma/rdma_netlink.h>
43#include <rdma/ib_addr.h>
44#include <rdma/ib_cache.h>
45
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;
56
57
58 bool going_down;
59};
60
61struct workqueue_struct *ib_comp_wq;
62struct workqueue_struct *ib_wq;
63EXPORT_SYMBOL_GPL(ib_wq);
64
65
66
67
68static LIST_HEAD(device_list);
69static LIST_HEAD(client_list);
70
71
72
73
74
75
76
77
78
79
80
81
82static DEFINE_MUTEX(device_mutex);
83static DECLARE_RWSEM(lists_rwsem);
84
85
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),
111 IB_MANDATORY_FUNC(dereg_mr),
112 IB_MANDATORY_FUNC(get_port_immutable)
113 };
114 int i;
115
116 for (i = 0; i < ARRAY_SIZE(mandatory_table); ++i) {
117 if (!*(void **) ((void *) device + mandatory_table[i].offset)) {
118 pr_warn("Device %s is missing mandatory function %s\n",
119 device->name, mandatory_table[i].name);
120 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{
141 unsigned long *inuse;
142 char buf[IB_DEVICE_NAME_MAX];
143 struct ib_device *device;
144 int i;
145
146 inuse = (unsigned long *) get_zeroed_page(GFP_KERNEL);
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
171static void ib_device_release(struct device *device)
172{
173 struct ib_device *dev = container_of(device, struct ib_device, dev);
174
175 ib_cache_release_one(dev);
176 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
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
201
202
203
204
205
206
207
208
209
210
211struct ib_device *ib_alloc_device(size_t size)
212{
213 struct ib_device *device;
214
215 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;
234}
235EXPORT_SYMBOL(ib_alloc_device);
236
237
238
239
240
241
242
243void ib_dealloc_device(struct ib_device *device)
244{
245 WARN_ON(device->reg_state != IB_DEV_UNREGISTERED &&
246 device->reg_state != IB_DEV_UNINITIALIZED);
247 kobject_put(&device->dev.kobj);
248}
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);
257 if (!context) {
258 pr_warn("Couldn't allocate client context for %s/%s\n",
259 device->name, client->name);
260 return -ENOMEM;
261 }
262
263 context->client = client;
264 context->data = NULL;
265 context->going_down = false;
266
267 down_write(&lists_rwsem);
268 spin_lock_irqsave(&device->client_data_lock, flags);
269 list_add(&context->list, &device->client_data_list);
270 spin_unlock_irqrestore(&device->client_data_lock, flags);
271 up_write(&lists_rwsem);
272
273 return 0;
274}
275
276static int verify_immutable(const struct ib_device *dev, u8 port)
277{
278 return WARN_ON(!rdma_cap_ib_mad(dev, port) &&
279 rdma_max_mad_size(dev, port) != 0);
280}
281
282static int read_port_immutable(struct ib_device *device)
283{
284 int ret;
285 u8 start_port = rdma_start_port(device);
286 u8 end_port = rdma_end_port(device);
287 u8 port;
288
289
290
291
292
293
294
295
296 device->port_immutable = kzalloc(sizeof(*device->port_immutable)
297 * (end_port + 1),
298 GFP_KERNEL);
299 if (!device->port_immutable)
300 return -ENOMEM;
301
302 for (port = start_port; port <= end_port; ++port) {
303 ret = device->get_port_immutable(device, port,
304 &device->port_immutable[port]);
305 if (ret)
306 return ret;
307
308 if (verify_immutable(device, port))
309 return -EINVAL;
310 }
311 return 0;
312}
313
314void ib_get_device_fw_str(struct ib_device *dev, char *str, size_t str_len)
315{
316 if (dev->get_dev_fw_str)
317 dev->get_dev_fw_str(dev, str, str_len);
318 else
319 str[0] = '\0';
320}
321EXPORT_SYMBOL(ib_get_device_fw_str);
322
323
324
325
326
327
328
329
330
331
332int ib_register_device(struct ib_device *device,
333 int (*port_callback)(struct ib_device *,
334 u8, struct kobject *))
335{
336 int ret;
337 struct ib_client *client;
338 struct ib_udata uhw = {.outlen = 0, .inlen = 0};
339
340 mutex_lock(&device_mutex);
341
342 if (strchr(device->name, '%')) {
343 ret = alloc_name(device->name);
344 if (ret)
345 goto out;
346 }
347
348 if (ib_device_check_mandatory(device)) {
349 ret = -EINVAL;
350 goto out;
351 }
352
353 ret = read_port_immutable(device);
354 if (ret) {
355 pr_warn("Couldn't create per port immutable data %s\n",
356 device->name);
357 goto out;
358 }
359
360 ret = ib_cache_setup_one(device);
361 if (ret) {
362 pr_warn("Couldn't set up InfiniBand P_Key/GID cache\n");
363 goto out;
364 }
365
366 memset(&device->attrs, 0, sizeof(device->attrs));
367 ret = device->query_device(device, &device->attrs, &uhw);
368 if (ret) {
369 pr_warn("Couldn't query the device attributes\n");
370 ib_cache_cleanup_one(device);
371 goto out;
372 }
373
374 ret = ib_device_register_sysfs(device, port_callback);
375 if (ret) {
376 pr_warn("Couldn't register device %s with driver model\n",
377 device->name);
378 ib_cache_cleanup_one(device);
379 goto out;
380 }
381
382 device->reg_state = IB_DEV_REGISTERED;
383
384 list_for_each_entry(client, &client_list, list)
385 if (client->add && !add_client_context(device, client))
386 client->add(device);
387
388 down_write(&lists_rwsem);
389 list_add_tail(&device->core_list, &device_list);
390 up_write(&lists_rwsem);
391out:
392 mutex_unlock(&device_mutex);
393 return ret;
394}
395EXPORT_SYMBOL(ib_register_device);
396
397
398
399
400
401
402
403void ib_unregister_device(struct ib_device *device)
404{
405 struct ib_client_data *context, *tmp;
406 unsigned long flags;
407
408 mutex_lock(&device_mutex);
409
410 down_write(&lists_rwsem);
411 list_del(&device->core_list);
412 spin_lock_irqsave(&device->client_data_lock, flags);
413 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
414 context->going_down = true;
415 spin_unlock_irqrestore(&device->client_data_lock, flags);
416 downgrade_write(&lists_rwsem);
417
418 list_for_each_entry_safe(context, tmp, &device->client_data_list,
419 list) {
420 if (context->client->remove)
421 context->client->remove(device, context->data);
422 }
423 up_read(&lists_rwsem);
424
425 mutex_unlock(&device_mutex);
426
427 ib_device_unregister_sysfs(device);
428 ib_cache_cleanup_one(device);
429
430 down_write(&lists_rwsem);
431 spin_lock_irqsave(&device->client_data_lock, flags);
432 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
433 kfree(context);
434 spin_unlock_irqrestore(&device->client_data_lock, flags);
435 up_write(&lists_rwsem);
436
437 device->reg_state = IB_DEV_UNREGISTERED;
438}
439EXPORT_SYMBOL(ib_unregister_device);
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454int ib_register_client(struct ib_client *client)
455{
456 struct ib_device *device;
457
458 mutex_lock(&device_mutex);
459
460 list_for_each_entry(device, &device_list, core_list)
461 if (client->add && !add_client_context(device, client))
462 client->add(device);
463
464 down_write(&lists_rwsem);
465 list_add_tail(&client->list, &client_list);
466 up_write(&lists_rwsem);
467
468 mutex_unlock(&device_mutex);
469
470 return 0;
471}
472EXPORT_SYMBOL(ib_register_client);
473
474
475
476
477
478
479
480
481
482void ib_unregister_client(struct ib_client *client)
483{
484 struct ib_client_data *context, *tmp;
485 struct ib_device *device;
486 unsigned long flags;
487
488 mutex_lock(&device_mutex);
489
490 down_write(&lists_rwsem);
491 list_del(&client->list);
492 up_write(&lists_rwsem);
493
494 list_for_each_entry(device, &device_list, core_list) {
495 struct ib_client_data *found_context = NULL;
496
497 down_write(&lists_rwsem);
498 spin_lock_irqsave(&device->client_data_lock, flags);
499 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
500 if (context->client == client) {
501 context->going_down = true;
502 found_context = context;
503 break;
504 }
505 spin_unlock_irqrestore(&device->client_data_lock, flags);
506 up_write(&lists_rwsem);
507
508 if (client->remove)
509 client->remove(device, found_context ?
510 found_context->data : NULL);
511
512 if (!found_context) {
513 pr_warn("No client context found for %s/%s\n",
514 device->name, client->name);
515 continue;
516 }
517
518 down_write(&lists_rwsem);
519 spin_lock_irqsave(&device->client_data_lock, flags);
520 list_del(&found_context->list);
521 kfree(found_context);
522 spin_unlock_irqrestore(&device->client_data_lock, flags);
523 up_write(&lists_rwsem);
524 }
525
526 mutex_unlock(&device_mutex);
527}
528EXPORT_SYMBOL(ib_unregister_client);
529
530
531
532
533
534
535
536
537
538void *ib_get_client_data(struct ib_device *device, struct ib_client *client)
539{
540 struct ib_client_data *context;
541 void *ret = NULL;
542 unsigned long flags;
543
544 spin_lock_irqsave(&device->client_data_lock, flags);
545 list_for_each_entry(context, &device->client_data_list, list)
546 if (context->client == client) {
547 ret = context->data;
548 break;
549 }
550 spin_unlock_irqrestore(&device->client_data_lock, flags);
551
552 return ret;
553}
554EXPORT_SYMBOL(ib_get_client_data);
555
556
557
558
559
560
561
562
563
564
565void ib_set_client_data(struct ib_device *device, struct ib_client *client,
566 void *data)
567{
568 struct ib_client_data *context;
569 unsigned long flags;
570
571 spin_lock_irqsave(&device->client_data_lock, flags);
572 list_for_each_entry(context, &device->client_data_list, list)
573 if (context->client == client) {
574 context->data = data;
575 goto out;
576 }
577
578 pr_warn("No client context found for %s/%s\n",
579 device->name, client->name);
580
581out:
582 spin_unlock_irqrestore(&device->client_data_lock, flags);
583}
584EXPORT_SYMBOL(ib_set_client_data);
585
586
587
588
589
590
591
592
593
594
595int ib_register_event_handler (struct ib_event_handler *event_handler)
596{
597 unsigned long flags;
598
599 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
600 list_add_tail(&event_handler->list,
601 &event_handler->device->event_handler_list);
602 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
603
604 return 0;
605}
606EXPORT_SYMBOL(ib_register_event_handler);
607
608
609
610
611
612
613
614
615int ib_unregister_event_handler(struct ib_event_handler *event_handler)
616{
617 unsigned long flags;
618
619 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
620 list_del(&event_handler->list);
621 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
622
623 return 0;
624}
625EXPORT_SYMBOL(ib_unregister_event_handler);
626
627
628
629
630
631
632
633
634
635void ib_dispatch_event(struct ib_event *event)
636{
637 unsigned long flags;
638 struct ib_event_handler *handler;
639
640 spin_lock_irqsave(&event->device->event_handler_lock, flags);
641
642 list_for_each_entry(handler, &event->device->event_handler_list, list)
643 handler->handler(handler, event);
644
645 spin_unlock_irqrestore(&event->device->event_handler_lock, flags);
646}
647EXPORT_SYMBOL(ib_dispatch_event);
648
649
650
651
652
653
654
655
656
657
658int ib_query_port(struct ib_device *device,
659 u8 port_num,
660 struct ib_port_attr *port_attr)
661{
662 union ib_gid gid;
663 int err;
664
665 if (port_num < rdma_start_port(device) || port_num > rdma_end_port(device))
666 return -EINVAL;
667
668 memset(port_attr, 0, sizeof(*port_attr));
669 err = device->query_port(device, port_num, port_attr);
670 if (err || port_attr->subnet_prefix)
671 return err;
672
673 if (rdma_port_get_link_layer(device, port_num) != IB_LINK_LAYER_INFINIBAND)
674 return 0;
675
676 err = ib_query_gid(device, port_num, 0, &gid, NULL);
677 if (err)
678 return err;
679
680 port_attr->subnet_prefix = be64_to_cpu(gid.global.subnet_prefix);
681 return 0;
682}
683EXPORT_SYMBOL(ib_query_port);
684
685
686
687
688
689
690
691
692
693
694
695
696int ib_query_gid(struct ib_device *device,
697 u8 port_num, int index, union ib_gid *gid,
698 struct ib_gid_attr *attr)
699{
700 if (rdma_cap_roce_gid_table(device, port_num))
701 return ib_get_cached_gid(device, port_num, index, gid, attr);
702
703 if (attr)
704 return -EINVAL;
705
706 return device->query_gid(device, port_num, index, gid);
707}
708EXPORT_SYMBOL(ib_query_gid);
709
710
711
712
713
714
715
716
717
718
719
720
721
722void ib_enum_roce_netdev(struct ib_device *ib_dev,
723 roce_netdev_filter filter,
724 void *filter_cookie,
725 roce_netdev_callback cb,
726 void *cookie)
727{
728 u8 port;
729
730 for (port = rdma_start_port(ib_dev); port <= rdma_end_port(ib_dev);
731 port++)
732 if (rdma_protocol_roce(ib_dev, port)) {
733 struct net_device *idev = NULL;
734
735 if (ib_dev->get_netdev)
736 idev = ib_dev->get_netdev(ib_dev, port);
737
738 if (idev &&
739 idev->reg_state >= NETREG_UNREGISTERED) {
740 dev_put(idev);
741 idev = NULL;
742 }
743
744 if (filter(ib_dev, port, idev, filter_cookie))
745 cb(ib_dev, port, idev, cookie);
746
747 if (idev)
748 dev_put(idev);
749 }
750}
751
752
753
754
755
756
757
758
759
760
761
762
763void ib_enum_all_roce_netdevs(roce_netdev_filter filter,
764 void *filter_cookie,
765 roce_netdev_callback cb,
766 void *cookie)
767{
768 struct ib_device *dev;
769
770 down_read(&lists_rwsem);
771 list_for_each_entry(dev, &device_list, core_list)
772 ib_enum_roce_netdev(dev, filter, filter_cookie, cb, cookie);
773 up_read(&lists_rwsem);
774}
775
776
777
778
779
780
781
782
783
784
785int ib_query_pkey(struct ib_device *device,
786 u8 port_num, u16 index, u16 *pkey)
787{
788 return device->query_pkey(device, port_num, index, pkey);
789}
790EXPORT_SYMBOL(ib_query_pkey);
791
792
793
794
795
796
797
798
799
800
801int ib_modify_device(struct ib_device *device,
802 int device_modify_mask,
803 struct ib_device_modify *device_modify)
804{
805 if (!device->modify_device)
806 return -ENOSYS;
807
808 return device->modify_device(device, device_modify_mask,
809 device_modify);
810}
811EXPORT_SYMBOL(ib_modify_device);
812
813
814
815
816
817
818
819
820
821
822
823
824int ib_modify_port(struct ib_device *device,
825 u8 port_num, int port_modify_mask,
826 struct ib_port_modify *port_modify)
827{
828 if (!device->modify_port)
829 return -ENOSYS;
830
831 if (port_num < rdma_start_port(device) || port_num > rdma_end_port(device))
832 return -EINVAL;
833
834 return device->modify_port(device, port_num, port_modify_mask,
835 port_modify);
836}
837EXPORT_SYMBOL(ib_modify_port);
838
839
840
841
842
843
844
845
846
847
848
849
850int ib_find_gid(struct ib_device *device, union ib_gid *gid,
851 enum ib_gid_type gid_type, struct net_device *ndev,
852 u8 *port_num, u16 *index)
853{
854 union ib_gid tmp_gid;
855 int ret, port, i;
856
857 for (port = rdma_start_port(device); port <= rdma_end_port(device); ++port) {
858 if (rdma_cap_roce_gid_table(device, port)) {
859 if (!ib_find_cached_gid_by_port(device, gid, gid_type, port,
860 ndev, index)) {
861 *port_num = port;
862 return 0;
863 }
864 }
865
866 if (gid_type != IB_GID_TYPE_IB)
867 continue;
868
869 for (i = 0; i < device->port_immutable[port].gid_tbl_len; ++i) {
870 ret = ib_query_gid(device, port, i, &tmp_gid, NULL);
871 if (ret)
872 return ret;
873 if (!memcmp(&tmp_gid, gid, sizeof *gid)) {
874 *port_num = port;
875 if (index)
876 *index = i;
877 return 0;
878 }
879 }
880 }
881
882 return -ENOENT;
883}
884EXPORT_SYMBOL(ib_find_gid);
885
886
887
888
889
890
891
892
893
894int ib_find_pkey(struct ib_device *device,
895 u8 port_num, u16 pkey, u16 *index)
896{
897 int ret, i;
898 u16 tmp_pkey;
899 int partial_ix = -1;
900
901 for (i = 0; i < device->port_immutable[port_num].pkey_tbl_len; ++i) {
902 ret = ib_query_pkey(device, port_num, i, &tmp_pkey);
903 if (ret)
904 return ret;
905 if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) {
906
907 if (tmp_pkey & 0x8000) {
908 *index = i;
909 return 0;
910 }
911 if (partial_ix < 0)
912 partial_ix = i;
913 }
914 }
915
916
917 if (partial_ix >= 0) {
918 *index = partial_ix;
919 return 0;
920 }
921 return -ENOENT;
922}
923EXPORT_SYMBOL(ib_find_pkey);
924
925
926
927
928
929
930
931
932
933
934
935struct net_device *ib_get_net_dev_by_params(struct ib_device *dev,
936 u8 port,
937 u16 pkey,
938 const union ib_gid *gid,
939 const struct sockaddr *addr)
940{
941 struct net_device *net_dev = NULL;
942 struct ib_client_data *context;
943
944 if (!rdma_protocol_ib(dev, port))
945 return NULL;
946
947 down_read(&lists_rwsem);
948
949 list_for_each_entry(context, &dev->client_data_list, list) {
950 struct ib_client *client = context->client;
951
952 if (context->going_down)
953 continue;
954
955 if (client->get_net_dev_by_params) {
956 net_dev = client->get_net_dev_by_params(dev, port, pkey,
957 gid, addr,
958 context->data);
959 if (net_dev)
960 break;
961 }
962 }
963
964 up_read(&lists_rwsem);
965
966 return net_dev;
967}
968EXPORT_SYMBOL(ib_get_net_dev_by_params);
969
970static struct ibnl_client_cbs ibnl_ls_cb_table[] = {
971 [RDMA_NL_LS_OP_RESOLVE] = {
972 .dump = ib_nl_handle_resolve_resp,
973 .module = THIS_MODULE },
974 [RDMA_NL_LS_OP_SET_TIMEOUT] = {
975 .dump = ib_nl_handle_set_timeout,
976 .module = THIS_MODULE },
977 [RDMA_NL_LS_OP_IP_RESOLVE] = {
978 .dump = ib_nl_handle_ip_res_resp,
979 .module = THIS_MODULE },
980};
981
982static int ib_add_ibnl_clients(void)
983{
984 return ibnl_add_client(RDMA_NL_LS, ARRAY_SIZE(ibnl_ls_cb_table),
985 ibnl_ls_cb_table);
986}
987
988static void ib_remove_ibnl_clients(void)
989{
990 ibnl_remove_client(RDMA_NL_LS);
991}
992
993static int __init ib_core_init(void)
994{
995 int ret;
996
997 ib_wq = alloc_workqueue("infiniband", 0, 0);
998 if (!ib_wq)
999 return -ENOMEM;
1000
1001 ib_comp_wq = alloc_workqueue("ib-comp-wq",
1002 WQ_UNBOUND | WQ_HIGHPRI | WQ_MEM_RECLAIM,
1003 WQ_UNBOUND_MAX_ACTIVE);
1004 if (!ib_comp_wq) {
1005 ret = -ENOMEM;
1006 goto err;
1007 }
1008
1009 ret = class_register(&ib_class);
1010 if (ret) {
1011 pr_warn("Couldn't create InfiniBand device class\n");
1012 goto err_comp;
1013 }
1014
1015 ret = ibnl_init();
1016 if (ret) {
1017 pr_warn("Couldn't init IB netlink interface\n");
1018 goto err_sysfs;
1019 }
1020
1021 ret = addr_init();
1022 if (ret) {
1023 pr_warn("Could't init IB address resolution\n");
1024 goto err_ibnl;
1025 }
1026
1027 ret = ib_mad_init();
1028 if (ret) {
1029 pr_warn("Couldn't init IB MAD\n");
1030 goto err_addr;
1031 }
1032
1033 ret = ib_sa_init();
1034 if (ret) {
1035 pr_warn("Couldn't init SA\n");
1036 goto err_mad;
1037 }
1038
1039 ret = ib_add_ibnl_clients();
1040 if (ret) {
1041 pr_warn("Couldn't register ibnl clients\n");
1042 goto err_sa;
1043 }
1044
1045 ib_cache_setup();
1046
1047 return 0;
1048
1049err_sa:
1050 ib_sa_cleanup();
1051err_mad:
1052 ib_mad_cleanup();
1053err_addr:
1054 addr_cleanup();
1055err_ibnl:
1056 ibnl_cleanup();
1057err_sysfs:
1058 class_unregister(&ib_class);
1059err_comp:
1060 destroy_workqueue(ib_comp_wq);
1061err:
1062 destroy_workqueue(ib_wq);
1063 return ret;
1064}
1065
1066static void __exit ib_core_cleanup(void)
1067{
1068 ib_cache_cleanup();
1069 ib_remove_ibnl_clients();
1070 ib_sa_cleanup();
1071 ib_mad_cleanup();
1072 addr_cleanup();
1073 ibnl_cleanup();
1074 class_unregister(&ib_class);
1075 destroy_workqueue(ib_comp_wq);
1076
1077 destroy_workqueue(ib_wq);
1078}
1079
1080module_init(ib_core_init);
1081module_exit(ib_core_cleanup);
1082