2 * Copyright (c) 2005 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Cisco Systems. All rights reserved.
4 * Copyright (c) 2005 Mellanox Technologies. All rights reserved.
5 * Copyright (c) 2005 Voltaire, Inc. All rights reserved.
6 * Copyright (c) 2005 PathScale, Inc. All rights reserved.
8 * This software is available to you under a choice of one of two
9 * licenses. You may choose to be licensed under the terms of the GNU
10 * General Public License (GPL) Version 2, available from the file
11 * COPYING in the main directory of this source tree, or the
12 * OpenIB.org BSD license below:
14 * Redistribution and use in source and binary forms, with or
15 * without modification, are permitted provided that the following
18 * - Redistributions of source code must retain the above
19 * copyright notice, this list of conditions and the following
22 * - Redistributions in binary form must reproduce the above
23 * copyright notice, this list of conditions and the following
24 * disclaimer in the documentation and/or other materials
25 * provided with the distribution.
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
30 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
31 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
32 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
33 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 * $Id: uverbs_main.c 2733 2005-06-28 19:14:34Z roland $
39 #include <linux/module.h>
40 #include <linux/init.h>
41 #include <linux/device.h>
42 #include <linux/err.h>
44 #include <linux/poll.h>
45 #include <linux/file.h>
46 #include <linux/mount.h>
48 #include <asm/uaccess.h>
52 MODULE_AUTHOR("Roland Dreier");
53 MODULE_DESCRIPTION("InfiniBand userspace verbs access");
54 MODULE_LICENSE("Dual BSD/GPL");
56 #define INFINIBANDEVENTFS_MAGIC 0x49426576 /* "IBev" */
59 IB_UVERBS_MAJOR = 231,
60 IB_UVERBS_BASE_MINOR = 192,
61 IB_UVERBS_MAX_DEVICES = 32
64 #define IB_UVERBS_BASE_DEV MKDEV(IB_UVERBS_MAJOR, IB_UVERBS_BASE_MINOR)
66 DECLARE_MUTEX(ib_uverbs_idr_mutex);
67 DEFINE_IDR(ib_uverbs_pd_idr);
68 DEFINE_IDR(ib_uverbs_mr_idr);
69 DEFINE_IDR(ib_uverbs_mw_idr);
70 DEFINE_IDR(ib_uverbs_ah_idr);
71 DEFINE_IDR(ib_uverbs_cq_idr);
72 DEFINE_IDR(ib_uverbs_qp_idr);
73 DEFINE_IDR(ib_uverbs_srq_idr);
75 static spinlock_t map_lock;
76 static DECLARE_BITMAP(dev_map, IB_UVERBS_MAX_DEVICES);
78 static ssize_t (*uverbs_cmd_table[])(struct ib_uverbs_file *file,
79 const char __user *buf, int in_len,
81 [IB_USER_VERBS_CMD_GET_CONTEXT] = ib_uverbs_get_context,
82 [IB_USER_VERBS_CMD_QUERY_DEVICE] = ib_uverbs_query_device,
83 [IB_USER_VERBS_CMD_QUERY_PORT] = ib_uverbs_query_port,
84 [IB_USER_VERBS_CMD_ALLOC_PD] = ib_uverbs_alloc_pd,
85 [IB_USER_VERBS_CMD_DEALLOC_PD] = ib_uverbs_dealloc_pd,
86 [IB_USER_VERBS_CMD_REG_MR] = ib_uverbs_reg_mr,
87 [IB_USER_VERBS_CMD_DEREG_MR] = ib_uverbs_dereg_mr,
88 [IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL] = ib_uverbs_create_comp_channel,
89 [IB_USER_VERBS_CMD_CREATE_CQ] = ib_uverbs_create_cq,
90 [IB_USER_VERBS_CMD_POLL_CQ] = ib_uverbs_poll_cq,
91 [IB_USER_VERBS_CMD_REQ_NOTIFY_CQ] = ib_uverbs_req_notify_cq,
92 [IB_USER_VERBS_CMD_DESTROY_CQ] = ib_uverbs_destroy_cq,
93 [IB_USER_VERBS_CMD_CREATE_QP] = ib_uverbs_create_qp,
94 [IB_USER_VERBS_CMD_MODIFY_QP] = ib_uverbs_modify_qp,
95 [IB_USER_VERBS_CMD_DESTROY_QP] = ib_uverbs_destroy_qp,
96 [IB_USER_VERBS_CMD_POST_SEND] = ib_uverbs_post_send,
97 [IB_USER_VERBS_CMD_POST_RECV] = ib_uverbs_post_recv,
98 [IB_USER_VERBS_CMD_POST_SRQ_RECV] = ib_uverbs_post_srq_recv,
99 [IB_USER_VERBS_CMD_CREATE_AH] = ib_uverbs_create_ah,
100 [IB_USER_VERBS_CMD_DESTROY_AH] = ib_uverbs_destroy_ah,
101 [IB_USER_VERBS_CMD_ATTACH_MCAST] = ib_uverbs_attach_mcast,
102 [IB_USER_VERBS_CMD_DETACH_MCAST] = ib_uverbs_detach_mcast,
103 [IB_USER_VERBS_CMD_CREATE_SRQ] = ib_uverbs_create_srq,
104 [IB_USER_VERBS_CMD_MODIFY_SRQ] = ib_uverbs_modify_srq,
105 [IB_USER_VERBS_CMD_DESTROY_SRQ] = ib_uverbs_destroy_srq,
108 static struct vfsmount *uverbs_event_mnt;
110 static void ib_uverbs_add_one(struct ib_device *device);
111 static void ib_uverbs_remove_one(struct ib_device *device);
113 static int ib_dealloc_ucontext(struct ib_ucontext *context)
115 struct ib_uobject *uobj, *tmp;
120 down(&ib_uverbs_idr_mutex);
122 list_for_each_entry_safe(uobj, tmp, &context->ah_list, list) {
123 struct ib_ah *ah = idr_find(&ib_uverbs_ah_idr, uobj->id);
124 idr_remove(&ib_uverbs_ah_idr, uobj->id);
126 list_del(&uobj->list);
130 list_for_each_entry_safe(uobj, tmp, &context->qp_list, list) {
131 struct ib_qp *qp = idr_find(&ib_uverbs_qp_idr, uobj->id);
132 idr_remove(&ib_uverbs_qp_idr, uobj->id);
134 list_del(&uobj->list);
135 kfree(container_of(uobj, struct ib_uevent_object, uobject));
138 list_for_each_entry_safe(uobj, tmp, &context->cq_list, list) {
139 struct ib_cq *cq = idr_find(&ib_uverbs_cq_idr, uobj->id);
140 idr_remove(&ib_uverbs_cq_idr, uobj->id);
142 list_del(&uobj->list);
143 kfree(container_of(uobj, struct ib_ucq_object, uobject));
146 list_for_each_entry_safe(uobj, tmp, &context->srq_list, list) {
147 struct ib_srq *srq = idr_find(&ib_uverbs_srq_idr, uobj->id);
148 idr_remove(&ib_uverbs_srq_idr, uobj->id);
150 list_del(&uobj->list);
151 kfree(container_of(uobj, struct ib_uevent_object, uobject));
156 list_for_each_entry_safe(uobj, tmp, &context->mr_list, list) {
157 struct ib_mr *mr = idr_find(&ib_uverbs_mr_idr, uobj->id);
158 struct ib_device *mrdev = mr->device;
159 struct ib_umem_object *memobj;
161 idr_remove(&ib_uverbs_mr_idr, uobj->id);
164 memobj = container_of(uobj, struct ib_umem_object, uobject);
165 ib_umem_release_on_close(mrdev, &memobj->umem);
167 list_del(&uobj->list);
171 list_for_each_entry_safe(uobj, tmp, &context->pd_list, list) {
172 struct ib_pd *pd = idr_find(&ib_uverbs_pd_idr, uobj->id);
173 idr_remove(&ib_uverbs_pd_idr, uobj->id);
175 list_del(&uobj->list);
179 up(&ib_uverbs_idr_mutex);
181 return context->device->dealloc_ucontext(context);
184 static void ib_uverbs_release_file(struct kref *ref)
186 struct ib_uverbs_file *file =
187 container_of(ref, struct ib_uverbs_file, ref);
189 module_put(file->device->ib_dev->owner);
193 static ssize_t ib_uverbs_event_read(struct file *filp, char __user *buf,
194 size_t count, loff_t *pos)
196 struct ib_uverbs_event_file *file = filp->private_data;
197 struct ib_uverbs_event *event;
201 spin_lock_irq(&file->lock);
203 while (list_empty(&file->event_list)) {
204 spin_unlock_irq(&file->lock);
206 if (filp->f_flags & O_NONBLOCK)
209 if (wait_event_interruptible(file->poll_wait,
210 !list_empty(&file->event_list)))
213 spin_lock_irq(&file->lock);
216 event = list_entry(file->event_list.next, struct ib_uverbs_event, list);
219 eventsz = sizeof (struct ib_uverbs_async_event_desc);
221 eventsz = sizeof (struct ib_uverbs_comp_event_desc);
223 if (eventsz > count) {
227 list_del(file->event_list.next);
228 if (event->counter) {
230 list_del(&event->obj_list);
234 spin_unlock_irq(&file->lock);
237 if (copy_to_user(buf, event, eventsz))
248 static unsigned int ib_uverbs_event_poll(struct file *filp,
249 struct poll_table_struct *wait)
251 unsigned int pollflags = 0;
252 struct ib_uverbs_event_file *file = filp->private_data;
254 poll_wait(filp, &file->poll_wait, wait);
256 spin_lock_irq(&file->lock);
257 if (!list_empty(&file->event_list))
258 pollflags = POLLIN | POLLRDNORM;
259 spin_unlock_irq(&file->lock);
264 void ib_uverbs_release_event_file(struct kref *ref)
266 struct ib_uverbs_event_file *file =
267 container_of(ref, struct ib_uverbs_event_file, ref);
272 static int ib_uverbs_event_fasync(int fd, struct file *filp, int on)
274 struct ib_uverbs_event_file *file = filp->private_data;
276 return fasync_helper(fd, filp, on, &file->async_queue);
279 static int ib_uverbs_event_close(struct inode *inode, struct file *filp)
281 struct ib_uverbs_event_file *file = filp->private_data;
282 struct ib_uverbs_event *entry, *tmp;
284 spin_lock_irq(&file->lock);
286 list_for_each_entry_safe(entry, tmp, &file->event_list, list) {
288 list_del(&entry->obj_list);
291 spin_unlock_irq(&file->lock);
293 ib_uverbs_event_fasync(-1, filp, 0);
295 if (file->is_async) {
296 ib_unregister_event_handler(&file->uverbs_file->event_handler);
297 kref_put(&file->uverbs_file->ref, ib_uverbs_release_file);
299 kref_put(&file->ref, ib_uverbs_release_event_file);
304 static struct file_operations uverbs_event_fops = {
305 .owner = THIS_MODULE,
306 .read = ib_uverbs_event_read,
307 .poll = ib_uverbs_event_poll,
308 .release = ib_uverbs_event_close,
309 .fasync = ib_uverbs_event_fasync
312 void ib_uverbs_comp_handler(struct ib_cq *cq, void *cq_context)
314 struct ib_uverbs_event_file *file = cq_context;
315 struct ib_ucq_object *uobj;
316 struct ib_uverbs_event *entry;
322 spin_lock_irqsave(&file->lock, flags);
324 spin_unlock_irqrestore(&file->lock, flags);
328 entry = kmalloc(sizeof *entry, GFP_ATOMIC);
330 spin_unlock_irqrestore(&file->lock, flags);
334 uobj = container_of(cq->uobject, struct ib_ucq_object, uobject);
336 entry->desc.comp.cq_handle = cq->uobject->user_handle;
337 entry->counter = &uobj->comp_events_reported;
339 list_add_tail(&entry->list, &file->event_list);
340 list_add_tail(&entry->obj_list, &uobj->comp_list);
341 spin_unlock_irqrestore(&file->lock, flags);
343 wake_up_interruptible(&file->poll_wait);
344 kill_fasync(&file->async_queue, SIGIO, POLL_IN);
347 static void ib_uverbs_async_handler(struct ib_uverbs_file *file,
348 __u64 element, __u64 event,
349 struct list_head *obj_list,
352 struct ib_uverbs_event *entry;
355 spin_lock_irqsave(&file->async_file->lock, flags);
356 if (!file->async_file->file) {
357 spin_unlock_irqrestore(&file->async_file->lock, flags);
361 entry = kmalloc(sizeof *entry, GFP_ATOMIC);
363 spin_unlock_irqrestore(&file->async_file->lock, flags);
367 entry->desc.async.element = element;
368 entry->desc.async.event_type = event;
369 entry->counter = counter;
371 list_add_tail(&entry->list, &file->async_file->event_list);
373 list_add_tail(&entry->obj_list, obj_list);
374 spin_unlock_irqrestore(&file->async_file->lock, flags);
376 wake_up_interruptible(&file->async_file->poll_wait);
377 kill_fasync(&file->async_file->async_queue, SIGIO, POLL_IN);
380 void ib_uverbs_cq_event_handler(struct ib_event *event, void *context_ptr)
382 struct ib_uverbs_event_file *ev_file = context_ptr;
383 struct ib_ucq_object *uobj;
385 uobj = container_of(event->element.cq->uobject,
386 struct ib_ucq_object, uobject);
388 ib_uverbs_async_handler(ev_file->uverbs_file, uobj->uobject.user_handle,
389 event->event, &uobj->async_list,
390 &uobj->async_events_reported);
394 void ib_uverbs_qp_event_handler(struct ib_event *event, void *context_ptr)
396 struct ib_uevent_object *uobj;
398 uobj = container_of(event->element.qp->uobject,
399 struct ib_uevent_object, uobject);
401 ib_uverbs_async_handler(context_ptr, uobj->uobject.user_handle,
402 event->event, &uobj->event_list,
403 &uobj->events_reported);
406 void ib_uverbs_srq_event_handler(struct ib_event *event, void *context_ptr)
408 struct ib_uevent_object *uobj;
410 uobj = container_of(event->element.srq->uobject,
411 struct ib_uevent_object, uobject);
413 ib_uverbs_async_handler(context_ptr, uobj->uobject.user_handle,
414 event->event, &uobj->event_list,
415 &uobj->events_reported);
418 void ib_uverbs_event_handler(struct ib_event_handler *handler,
419 struct ib_event *event)
421 struct ib_uverbs_file *file =
422 container_of(handler, struct ib_uverbs_file, event_handler);
424 ib_uverbs_async_handler(file, event->element.port_num, event->event,
428 struct file *ib_uverbs_alloc_event_file(struct ib_uverbs_file *uverbs_file,
429 int is_async, int *fd)
431 struct ib_uverbs_event_file *ev_file;
435 ev_file = kmalloc(sizeof *ev_file, GFP_KERNEL);
437 return ERR_PTR(-ENOMEM);
439 kref_init(&ev_file->ref);
440 spin_lock_init(&ev_file->lock);
441 INIT_LIST_HEAD(&ev_file->event_list);
442 init_waitqueue_head(&ev_file->poll_wait);
443 ev_file->uverbs_file = uverbs_file;
444 ev_file->async_queue = NULL;
445 ev_file->is_async = is_async;
447 *fd = get_unused_fd();
453 filp = get_empty_filp();
459 ev_file->file = filp;
462 * fops_get() can't fail here, because we're coming from a
463 * system call on a uverbs file, which will already have a
466 filp->f_op = fops_get(&uverbs_event_fops);
467 filp->f_vfsmnt = mntget(uverbs_event_mnt);
468 filp->f_dentry = dget(uverbs_event_mnt->mnt_root);
469 filp->f_mapping = filp->f_dentry->d_inode->i_mapping;
470 filp->f_flags = O_RDONLY;
471 filp->f_mode = FMODE_READ;
472 filp->private_data = ev_file;
485 * Look up a completion event file by FD. If lookup is successful,
486 * takes a ref to the event file struct that it returns; if
487 * unsuccessful, returns NULL.
489 struct ib_uverbs_event_file *ib_uverbs_lookup_comp_file(int fd)
491 struct ib_uverbs_event_file *ev_file = NULL;
498 if (filp->f_op != &uverbs_event_fops)
501 ev_file = filp->private_data;
502 if (ev_file->is_async) {
507 kref_get(&ev_file->ref);
514 static ssize_t ib_uverbs_write(struct file *filp, const char __user *buf,
515 size_t count, loff_t *pos)
517 struct ib_uverbs_file *file = filp->private_data;
518 struct ib_uverbs_cmd_hdr hdr;
520 if (count < sizeof hdr)
523 if (copy_from_user(&hdr, buf, sizeof hdr))
526 if (hdr.in_words * 4 != count)
529 if (hdr.command < 0 ||
530 hdr.command >= ARRAY_SIZE(uverbs_cmd_table) ||
531 !uverbs_cmd_table[hdr.command] ||
532 !(file->device->ib_dev->uverbs_cmd_mask & (1ull << hdr.command)))
535 if (!file->ucontext &&
536 hdr.command != IB_USER_VERBS_CMD_GET_CONTEXT)
539 return uverbs_cmd_table[hdr.command](file, buf + sizeof hdr,
540 hdr.in_words * 4, hdr.out_words * 4);
543 static int ib_uverbs_mmap(struct file *filp, struct vm_area_struct *vma)
545 struct ib_uverbs_file *file = filp->private_data;
550 return file->device->ib_dev->mmap(file->ucontext, vma);
553 static int ib_uverbs_open(struct inode *inode, struct file *filp)
555 struct ib_uverbs_device *dev =
556 container_of(inode->i_cdev, struct ib_uverbs_device, dev);
557 struct ib_uverbs_file *file;
559 if (!try_module_get(dev->ib_dev->owner))
562 file = kmalloc(sizeof *file, GFP_KERNEL);
564 module_put(dev->ib_dev->owner);
569 file->ucontext = NULL;
570 kref_init(&file->ref);
571 init_MUTEX(&file->mutex);
573 filp->private_data = file;
578 static int ib_uverbs_close(struct inode *inode, struct file *filp)
580 struct ib_uverbs_file *file = filp->private_data;
582 ib_dealloc_ucontext(file->ucontext);
584 kref_put(&file->async_file->ref, ib_uverbs_release_event_file);
585 kref_put(&file->ref, ib_uverbs_release_file);
590 static struct file_operations uverbs_fops = {
591 .owner = THIS_MODULE,
592 .write = ib_uverbs_write,
593 .open = ib_uverbs_open,
594 .release = ib_uverbs_close
597 static struct file_operations uverbs_mmap_fops = {
598 .owner = THIS_MODULE,
599 .write = ib_uverbs_write,
600 .mmap = ib_uverbs_mmap,
601 .open = ib_uverbs_open,
602 .release = ib_uverbs_close
605 static struct ib_client uverbs_client = {
607 .add = ib_uverbs_add_one,
608 .remove = ib_uverbs_remove_one
611 static ssize_t show_ibdev(struct class_device *class_dev, char *buf)
613 struct ib_uverbs_device *dev =
614 container_of(class_dev, struct ib_uverbs_device, class_dev);
616 return sprintf(buf, "%s\n", dev->ib_dev->name);
618 static CLASS_DEVICE_ATTR(ibdev, S_IRUGO, show_ibdev, NULL);
620 static ssize_t show_dev_abi_version(struct class_device *class_dev, char *buf)
622 struct ib_uverbs_device *dev =
623 container_of(class_dev, struct ib_uverbs_device, class_dev);
625 return sprintf(buf, "%d\n", dev->ib_dev->uverbs_abi_ver);
627 static CLASS_DEVICE_ATTR(abi_version, S_IRUGO, show_dev_abi_version, NULL);
629 static void ib_uverbs_release_class_dev(struct class_device *class_dev)
631 struct ib_uverbs_device *dev =
632 container_of(class_dev, struct ib_uverbs_device, class_dev);
635 clear_bit(dev->devnum, dev_map);
639 static struct class uverbs_class = {
640 .name = "infiniband_verbs",
641 .release = ib_uverbs_release_class_dev
644 static ssize_t show_abi_version(struct class *class, char *buf)
646 return sprintf(buf, "%d\n", IB_USER_VERBS_ABI_VERSION);
648 static CLASS_ATTR(abi_version, S_IRUGO, show_abi_version, NULL);
650 static void ib_uverbs_add_one(struct ib_device *device)
652 struct ib_uverbs_device *uverbs_dev;
654 if (!device->alloc_ucontext)
657 uverbs_dev = kmalloc(sizeof *uverbs_dev, GFP_KERNEL);
661 memset(uverbs_dev, 0, sizeof *uverbs_dev);
663 spin_lock(&map_lock);
664 uverbs_dev->devnum = find_first_zero_bit(dev_map, IB_UVERBS_MAX_DEVICES);
665 if (uverbs_dev->devnum >= IB_UVERBS_MAX_DEVICES) {
666 spin_unlock(&map_lock);
669 set_bit(uverbs_dev->devnum, dev_map);
670 spin_unlock(&map_lock);
672 uverbs_dev->ib_dev = device;
673 uverbs_dev->num_comp_vectors = 1;
676 cdev_init(&uverbs_dev->dev, &uverbs_mmap_fops);
678 cdev_init(&uverbs_dev->dev, &uverbs_fops);
679 uverbs_dev->dev.owner = THIS_MODULE;
680 kobject_set_name(&uverbs_dev->dev.kobj, "uverbs%d", uverbs_dev->devnum);
681 if (cdev_add(&uverbs_dev->dev, IB_UVERBS_BASE_DEV + uverbs_dev->devnum, 1))
684 uverbs_dev->class_dev.class = &uverbs_class;
685 uverbs_dev->class_dev.dev = device->dma_device;
686 uverbs_dev->class_dev.devt = uverbs_dev->dev.dev;
687 snprintf(uverbs_dev->class_dev.class_id, BUS_ID_SIZE, "uverbs%d", uverbs_dev->devnum);
688 if (class_device_register(&uverbs_dev->class_dev))
691 if (class_device_create_file(&uverbs_dev->class_dev, &class_device_attr_ibdev))
693 if (class_device_create_file(&uverbs_dev->class_dev, &class_device_attr_abi_version))
696 ib_set_client_data(device, &uverbs_client, uverbs_dev);
701 class_device_unregister(&uverbs_dev->class_dev);
704 cdev_del(&uverbs_dev->dev);
705 clear_bit(uverbs_dev->devnum, dev_map);
712 static void ib_uverbs_remove_one(struct ib_device *device)
714 struct ib_uverbs_device *uverbs_dev = ib_get_client_data(device, &uverbs_client);
719 class_device_unregister(&uverbs_dev->class_dev);
722 static struct super_block *uverbs_event_get_sb(struct file_system_type *fs_type, int flags,
723 const char *dev_name, void *data)
725 return get_sb_pseudo(fs_type, "infinibandevent:", NULL,
726 INFINIBANDEVENTFS_MAGIC);
729 static struct file_system_type uverbs_event_fs = {
730 /* No owner field so module can be unloaded */
731 .name = "infinibandeventfs",
732 .get_sb = uverbs_event_get_sb,
733 .kill_sb = kill_litter_super
736 static int __init ib_uverbs_init(void)
740 spin_lock_init(&map_lock);
742 ret = register_chrdev_region(IB_UVERBS_BASE_DEV, IB_UVERBS_MAX_DEVICES,
745 printk(KERN_ERR "user_verbs: couldn't register device number\n");
749 ret = class_register(&uverbs_class);
751 printk(KERN_ERR "user_verbs: couldn't create class infiniband_verbs\n");
755 ret = class_create_file(&uverbs_class, &class_attr_abi_version);
757 printk(KERN_ERR "user_verbs: couldn't create abi_version attribute\n");
761 ret = register_filesystem(&uverbs_event_fs);
763 printk(KERN_ERR "user_verbs: couldn't register infinibandeventfs\n");
767 uverbs_event_mnt = kern_mount(&uverbs_event_fs);
768 if (IS_ERR(uverbs_event_mnt)) {
769 ret = PTR_ERR(uverbs_event_mnt);
770 printk(KERN_ERR "user_verbs: couldn't mount infinibandeventfs\n");
774 ret = ib_register_client(&uverbs_client);
776 printk(KERN_ERR "user_verbs: couldn't register client\n");
783 mntput(uverbs_event_mnt);
786 unregister_filesystem(&uverbs_event_fs);
789 class_unregister(&uverbs_class);
792 unregister_chrdev_region(IB_UVERBS_BASE_DEV, IB_UVERBS_MAX_DEVICES);
798 static void __exit ib_uverbs_cleanup(void)
800 ib_unregister_client(&uverbs_client);
801 mntput(uverbs_event_mnt);
802 unregister_filesystem(&uverbs_event_fs);
803 class_unregister(&uverbs_class);
804 unregister_chrdev_region(IB_UVERBS_BASE_DEV, IB_UVERBS_MAX_DEVICES);
805 idr_destroy(&ib_uverbs_pd_idr);
806 idr_destroy(&ib_uverbs_mr_idr);
807 idr_destroy(&ib_uverbs_mw_idr);
808 idr_destroy(&ib_uverbs_ah_idr);
809 idr_destroy(&ib_uverbs_cq_idr);
810 idr_destroy(&ib_uverbs_qp_idr);
811 idr_destroy(&ib_uverbs_srq_idr);
814 module_init(ib_uverbs_init);
815 module_exit(ib_uverbs_cleanup);