user_mad.c 28.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 * Copyright (c) 2004 Topspin Communications.  All rights reserved.
R
Roland Dreier 已提交
3
 * Copyright (c) 2005 Voltaire, Inc. All rights reserved.
4
 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
5
 * Copyright (c) 2008 Cisco. All rights reserved.
L
Linus Torvalds 已提交
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 35 36 37 38 39 40 41 42 43
 *
 * This software is available to you under a choice of one of two
 * licenses.  You may choose to be licensed under the terms of the GNU
 * General Public License (GPL) Version 2, available from the file
 * COPYING in the main directory of this source tree, or the
 * OpenIB.org BSD license below:
 *
 *     Redistribution and use in source and binary forms, with or
 *     without modification, are permitted provided that the following
 *     conditions are met:
 *
 *      - Redistributions of source code must retain the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer.
 *
 *      - Redistributions in binary form must reproduce the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer in the documentation and/or other materials
 *        provided with the distribution.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

#include <linux/module.h>
#include <linux/init.h>
#include <linux/device.h>
#include <linux/err.h>
#include <linux/fs.h>
#include <linux/cdev.h>
#include <linux/dma-mapping.h>
#include <linux/poll.h>
44
#include <linux/mutex.h>
L
Linus Torvalds 已提交
45
#include <linux/kref.h>
46
#include <linux/compat.h>
47
#include <linux/sched.h>
48
#include <linux/semaphore.h>
L
Linus Torvalds 已提交
49 50 51

#include <asm/uaccess.h>

52 53
#include <rdma/ib_mad.h>
#include <rdma/ib_user_mad.h>
L
Linus Torvalds 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66

MODULE_AUTHOR("Roland Dreier");
MODULE_DESCRIPTION("InfiniBand userspace MAD packet access");
MODULE_LICENSE("Dual BSD/GPL");

enum {
	IB_UMAD_MAX_PORTS  = 64,
	IB_UMAD_MAX_AGENTS = 32,

	IB_UMAD_MAJOR      = 231,
	IB_UMAD_MINOR_BASE = 0
};

67
/*
A
Alexander Chiang 已提交
68 69 70
 * Our lifetime rules for these structs are the following:
 * device special file is opened, we take a reference on the
 * ib_umad_port's struct ib_umad_device. We drop these
71 72 73 74 75 76 77
 * references in the corresponding close().
 *
 * In addition to references coming from open character devices, there
 * is one more reference to each ib_umad_device representing the
 * module's reference taken when allocating the ib_umad_device in
 * ib_umad_add_one().
 *
A
Alexander Chiang 已提交
78
 * When destroying an ib_umad_device, we drop the module's reference.
79 80
 */

L
Linus Torvalds 已提交
81
struct ib_umad_port {
82
	struct cdev           cdev;
83
	struct device	      *dev;
L
Linus Torvalds 已提交
84

85
	struct cdev           sm_cdev;
86
	struct device	      *sm_dev;
L
Linus Torvalds 已提交
87 88
	struct semaphore       sm_sem;

89
	struct mutex	       file_mutex;
90 91
	struct list_head       file_list;

L
Linus Torvalds 已提交
92 93
	struct ib_device      *ib_dev;
	struct ib_umad_device *umad_dev;
94
	int                    dev_num;
L
Linus Torvalds 已提交
95 96 97 98 99 100 101 102 103 104
	u8                     port_num;
};

struct ib_umad_device {
	int                  start_port, end_port;
	struct kref          ref;
	struct ib_umad_port  port[0];
};

struct ib_umad_file {
105
	struct mutex		mutex;
106 107
	struct ib_umad_port    *port;
	struct list_head	recv_list;
108
	struct list_head	send_list;
109
	struct list_head	port_list;
110
	spinlock_t		send_lock;
111 112 113
	wait_queue_head_t	recv_wait;
	struct ib_mad_agent    *agent[IB_UMAD_MAX_AGENTS];
	int			agents_dead;
R
Roland Dreier 已提交
114 115
	u8			use_pkey_index;
	u8			already_used;
L
Linus Torvalds 已提交
116 117 118
};

struct ib_umad_packet {
119
	struct ib_mad_send_buf *msg;
120
	struct ib_mad_recv_wc  *recv_wc;
L
Linus Torvalds 已提交
121
	struct list_head   list;
122 123
	int		   length;
	struct ib_user_mad mad;
L
Linus Torvalds 已提交
124 125
};

126 127
static struct class *umad_class;

L
Linus Torvalds 已提交
128
static const dev_t base_dev = MKDEV(IB_UMAD_MAJOR, IB_UMAD_MINOR_BASE);
129 130

static DEFINE_SPINLOCK(port_lock);
131
static DECLARE_BITMAP(dev_map, IB_UMAD_MAX_PORTS);
L
Linus Torvalds 已提交
132 133 134 135

static void ib_umad_add_one(struct ib_device *device);
static void ib_umad_remove_one(struct ib_device *device);

136 137 138 139 140 141 142 143
static void ib_umad_release_dev(struct kref *ref)
{
	struct ib_umad_device *dev =
		container_of(ref, struct ib_umad_device, ref);

	kfree(dev);
}

R
Roland Dreier 已提交
144 145 146 147 148 149
static int hdr_size(struct ib_umad_file *file)
{
	return file->use_pkey_index ? sizeof (struct ib_user_mad_hdr) :
		sizeof (struct ib_user_mad_hdr_old);
}

150
/* caller must hold file->mutex */
151 152 153 154 155
static struct ib_mad_agent *__get_agent(struct ib_umad_file *file, int id)
{
	return file->agents_dead ? NULL : file->agent[id];
}

L
Linus Torvalds 已提交
156 157 158 159 160 161
static int queue_packet(struct ib_umad_file *file,
			struct ib_mad_agent *agent,
			struct ib_umad_packet *packet)
{
	int ret = 1;

162
	mutex_lock(&file->mutex);
163

164 165 166
	for (packet->mad.hdr.id = 0;
	     packet->mad.hdr.id < IB_UMAD_MAX_AGENTS;
	     packet->mad.hdr.id++)
167
		if (agent == __get_agent(file, packet->mad.hdr.id)) {
L
Linus Torvalds 已提交
168 169 170 171 172 173
			list_add_tail(&packet->list, &file->recv_list);
			wake_up_interruptible(&file->recv_wait);
			ret = 0;
			break;
		}

174
	mutex_unlock(&file->mutex);
L
Linus Torvalds 已提交
175 176 177 178

	return ret;
}

179 180
static void dequeue_send(struct ib_umad_file *file,
			 struct ib_umad_packet *packet)
181
{
182 183 184
	spin_lock_irq(&file->send_lock);
	list_del(&packet->list);
	spin_unlock_irq(&file->send_lock);
185
}
186

L
Linus Torvalds 已提交
187 188 189 190
static void send_handler(struct ib_mad_agent *agent,
			 struct ib_mad_send_wc *send_wc)
{
	struct ib_umad_file *file = agent->context;
191
	struct ib_umad_packet *packet = send_wc->send_buf->context[0];
L
Linus Torvalds 已提交
192

193
	dequeue_send(file, packet);
194
	ib_destroy_ah(packet->msg->ah);
195
	ib_free_send_mad(packet->msg);
L
Linus Torvalds 已提交
196 197

	if (send_wc->status == IB_WC_RESP_TIMEOUT_ERR) {
198 199 200 201
		packet->length = IB_MGMT_MAD_HDR;
		packet->mad.hdr.status = ETIMEDOUT;
		if (!queue_packet(file, agent, packet))
			return;
202
	}
L
Linus Torvalds 已提交
203 204 205 206 207 208 209 210 211 212
	kfree(packet);
}

static void recv_handler(struct ib_mad_agent *agent,
			 struct ib_mad_recv_wc *mad_recv_wc)
{
	struct ib_umad_file *file = agent->context;
	struct ib_umad_packet *packet;

	if (mad_recv_wc->wc->status != IB_WC_SUCCESS)
213
		goto err1;
L
Linus Torvalds 已提交
214

215
	packet = kzalloc(sizeof *packet, GFP_KERNEL);
L
Linus Torvalds 已提交
216
	if (!packet)
217
		goto err1;
L
Linus Torvalds 已提交
218

219 220
	packet->length = mad_recv_wc->mad_len;
	packet->recv_wc = mad_recv_wc;
L
Linus Torvalds 已提交
221

R
Roland Dreier 已提交
222 223 224 225 226 227 228
	packet->mad.hdr.status	   = 0;
	packet->mad.hdr.length	   = hdr_size(file) + mad_recv_wc->mad_len;
	packet->mad.hdr.qpn	   = cpu_to_be32(mad_recv_wc->wc->src_qp);
	packet->mad.hdr.lid	   = cpu_to_be16(mad_recv_wc->wc->slid);
	packet->mad.hdr.sl	   = mad_recv_wc->wc->sl;
	packet->mad.hdr.path_bits  = mad_recv_wc->wc->dlid_path_bits;
	packet->mad.hdr.pkey_index = mad_recv_wc->wc->pkey_index;
229 230
	packet->mad.hdr.grh_present = !!(mad_recv_wc->wc->wc_flags & IB_WC_GRH);
	if (packet->mad.hdr.grh_present) {
231 232 233 234 235 236 237 238 239 240 241
		struct ib_ah_attr ah_attr;

		ib_init_ah_from_wc(agent->device, agent->port_num,
				   mad_recv_wc->wc, mad_recv_wc->recv_buf.grh,
				   &ah_attr);

		packet->mad.hdr.gid_index = ah_attr.grh.sgid_index;
		packet->mad.hdr.hop_limit = ah_attr.grh.hop_limit;
		packet->mad.hdr.traffic_class = ah_attr.grh.traffic_class;
		memcpy(packet->mad.hdr.gid, &ah_attr.grh.dgid, 16);
		packet->mad.hdr.flow_label = cpu_to_be32(ah_attr.grh.flow_label);
L
Linus Torvalds 已提交
242 243 244
	}

	if (queue_packet(file, agent, packet))
245 246
		goto err2;
	return;
L
Linus Torvalds 已提交
247

248 249 250
err2:
	kfree(packet);
err1:
L
Linus Torvalds 已提交
251 252 253
	ib_free_recv_mad(mad_recv_wc);
}

R
Roland Dreier 已提交
254 255
static ssize_t copy_recv_mad(struct ib_umad_file *file, char __user *buf,
			     struct ib_umad_packet *packet, size_t count)
256 257 258 259 260 261 262
{
	struct ib_mad_recv_buf *recv_buf;
	int left, seg_payload, offset, max_seg_payload;

	/* We need enough room to copy the first (or only) MAD segment. */
	recv_buf = &packet->recv_wc->recv_buf;
	if ((packet->length <= sizeof (*recv_buf->mad) &&
R
Roland Dreier 已提交
263
	     count < hdr_size(file) + packet->length) ||
264
	    (packet->length > sizeof (*recv_buf->mad) &&
R
Roland Dreier 已提交
265
	     count < hdr_size(file) + sizeof (*recv_buf->mad)))
266 267
		return -EINVAL;

R
Roland Dreier 已提交
268
	if (copy_to_user(buf, &packet->mad, hdr_size(file)))
269 270
		return -EFAULT;

R
Roland Dreier 已提交
271
	buf += hdr_size(file);
272 273 274 275 276 277 278 279 280
	seg_payload = min_t(int, packet->length, sizeof (*recv_buf->mad));
	if (copy_to_user(buf, recv_buf->mad, seg_payload))
		return -EFAULT;

	if (seg_payload < packet->length) {
		/*
		 * Multipacket RMPP MAD message. Copy remainder of message.
		 * Note that last segment may have a shorter payload.
		 */
R
Roland Dreier 已提交
281
		if (count < hdr_size(file) + packet->length) {
282 283 284 285 286 287
			/*
			 * The buffer is too small, return the first RMPP segment,
			 * which includes the RMPP message length.
			 */
			return -ENOSPC;
		}
288
		offset = ib_get_mad_data_offset(recv_buf->mad->mad_hdr.mgmt_class);
289 290 291 292 293 294 295 296 297 298 299 300
		max_seg_payload = sizeof (struct ib_mad) - offset;

		for (left = packet->length - seg_payload, buf += seg_payload;
		     left; left -= seg_payload, buf += seg_payload) {
			recv_buf = container_of(recv_buf->list.next,
						struct ib_mad_recv_buf, list);
			seg_payload = min(left, max_seg_payload);
			if (copy_to_user(buf, ((void *) recv_buf->mad) + offset,
					 seg_payload))
				return -EFAULT;
		}
	}
R
Roland Dreier 已提交
301
	return hdr_size(file) + packet->length;
302 303
}

R
Roland Dreier 已提交
304 305
static ssize_t copy_send_mad(struct ib_umad_file *file, char __user *buf,
			     struct ib_umad_packet *packet, size_t count)
306
{
R
Roland Dreier 已提交
307
	ssize_t size = hdr_size(file) + packet->length;
308 309 310 311

	if (count < size)
		return -EINVAL;

R
Roland Dreier 已提交
312 313 314 315 316 317
	if (copy_to_user(buf, &packet->mad, hdr_size(file)))
		return -EFAULT;

	buf += hdr_size(file);

	if (copy_to_user(buf, packet->mad.data, packet->length))
318 319 320 321 322
		return -EFAULT;

	return size;
}

L
Linus Torvalds 已提交
323 324 325 326 327 328 329
static ssize_t ib_umad_read(struct file *filp, char __user *buf,
			    size_t count, loff_t *pos)
{
	struct ib_umad_file *file = filp->private_data;
	struct ib_umad_packet *packet;
	ssize_t ret;

R
Roland Dreier 已提交
330
	if (count < hdr_size(file))
L
Linus Torvalds 已提交
331 332
		return -EINVAL;

333
	mutex_lock(&file->mutex);
L
Linus Torvalds 已提交
334 335

	while (list_empty(&file->recv_list)) {
336
		mutex_unlock(&file->mutex);
L
Linus Torvalds 已提交
337 338 339 340 341 342 343 344

		if (filp->f_flags & O_NONBLOCK)
			return -EAGAIN;

		if (wait_event_interruptible(file->recv_wait,
					     !list_empty(&file->recv_list)))
			return -ERESTARTSYS;

345
		mutex_lock(&file->mutex);
L
Linus Torvalds 已提交
346 347 348 349 350
	}

	packet = list_entry(file->recv_list.next, struct ib_umad_packet, list);
	list_del(&packet->list);

351
	mutex_unlock(&file->mutex);
L
Linus Torvalds 已提交
352

353
	if (packet->recv_wc)
R
Roland Dreier 已提交
354
		ret = copy_recv_mad(file, buf, packet, count);
L
Linus Torvalds 已提交
355
	else
R
Roland Dreier 已提交
356
		ret = copy_send_mad(file, buf, packet, count);
357

358 359
	if (ret < 0) {
		/* Requeue packet */
360
		mutex_lock(&file->mutex);
361
		list_add(&packet->list, &file->recv_list);
362
		mutex_unlock(&file->mutex);
363 364 365
	} else {
		if (packet->recv_wc)
			ib_free_recv_mad(packet->recv_wc);
366
		kfree(packet);
367
	}
L
Linus Torvalds 已提交
368 369 370
	return ret;
}

371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
static int copy_rmpp_mad(struct ib_mad_send_buf *msg, const char __user *buf)
{
	int left, seg;

	/* Copy class specific header */
	if ((msg->hdr_len > IB_MGMT_RMPP_HDR) &&
	    copy_from_user(msg->mad + IB_MGMT_RMPP_HDR, buf + IB_MGMT_RMPP_HDR,
			   msg->hdr_len - IB_MGMT_RMPP_HDR))
		return -EFAULT;

	/* All headers are in place.  Copy data segments. */
	for (seg = 1, left = msg->data_len, buf += msg->hdr_len; left > 0;
	     seg++, left -= msg->seg_size, buf += msg->seg_size) {
		if (copy_from_user(ib_get_rmpp_segment(msg, seg), buf,
				   min(left, msg->seg_size)))
			return -EFAULT;
	}
	return 0;
}

391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
static int same_destination(struct ib_user_mad_hdr *hdr1,
			    struct ib_user_mad_hdr *hdr2)
{
	if (!hdr1->grh_present && !hdr2->grh_present)
	   return (hdr1->lid == hdr2->lid);

	if (hdr1->grh_present && hdr2->grh_present)
	   return !memcmp(hdr1->gid, hdr2->gid, 16);

	return 0;
}

static int is_duplicate(struct ib_umad_file *file,
			struct ib_umad_packet *packet)
{
	struct ib_umad_packet *sent_packet;
	struct ib_mad_hdr *sent_hdr, *hdr;

	hdr = (struct ib_mad_hdr *) packet->mad.data;
	list_for_each_entry(sent_packet, &file->send_list, list) {
		sent_hdr = (struct ib_mad_hdr *) sent_packet->mad.data;

		if ((hdr->tid != sent_hdr->tid) ||
		    (hdr->mgmt_class != sent_hdr->mgmt_class))
			continue;

		/*
		 * No need to be overly clever here.  If two new operations have
		 * the same TID, reject the second as a duplicate.  This is more
		 * restrictive than required by the spec.
		 */
		if (!ib_response_mad((struct ib_mad *) hdr)) {
			if (!ib_response_mad((struct ib_mad *) sent_hdr))
				return 1;
			continue;
		} else if (!ib_response_mad((struct ib_mad *) sent_hdr))
			continue;

		if (same_destination(&packet->mad.hdr, &sent_packet->mad.hdr))
			return 1;
	}

	return 0;
}

L
Linus Torvalds 已提交
436 437 438 439 440 441 442
static ssize_t ib_umad_write(struct file *filp, const char __user *buf,
			     size_t count, loff_t *pos)
{
	struct ib_umad_file *file = filp->private_data;
	struct ib_umad_packet *packet;
	struct ib_mad_agent *agent;
	struct ib_ah_attr ah_attr;
443
	struct ib_ah *ah;
444
	struct ib_rmpp_mad *rmpp_mad;
445
	__be64 *tid;
446
	int ret, data_len, hdr_len, copy_offset, rmpp_active;
L
Linus Torvalds 已提交
447

R
Roland Dreier 已提交
448
	if (count < hdr_size(file) + IB_MGMT_RMPP_HDR)
L
Linus Torvalds 已提交
449 450
		return -EINVAL;

451
	packet = kzalloc(sizeof *packet + IB_MGMT_RMPP_HDR, GFP_KERNEL);
L
Linus Torvalds 已提交
452 453 454
	if (!packet)
		return -ENOMEM;

R
Roland Dreier 已提交
455
	if (copy_from_user(&packet->mad, buf, hdr_size(file))) {
456 457
		ret = -EFAULT;
		goto err;
L
Linus Torvalds 已提交
458 459
	}

460 461
	if (packet->mad.hdr.id < 0 ||
	    packet->mad.hdr.id >= IB_UMAD_MAX_AGENTS) {
L
Linus Torvalds 已提交
462 463 464 465
		ret = -EINVAL;
		goto err;
	}

R
Roland Dreier 已提交
466 467 468 469 470 471 472
	buf += hdr_size(file);

	if (copy_from_user(packet->mad.data, buf, IB_MGMT_RMPP_HDR)) {
		ret = -EFAULT;
		goto err;
	}

473
	mutex_lock(&file->mutex);
L
Linus Torvalds 已提交
474

475
	agent = __get_agent(file, packet->mad.hdr.id);
L
Linus Torvalds 已提交
476 477 478 479 480 481
	if (!agent) {
		ret = -EINVAL;
		goto err_up;
	}

	memset(&ah_attr, 0, sizeof ah_attr);
482 483 484
	ah_attr.dlid          = be16_to_cpu(packet->mad.hdr.lid);
	ah_attr.sl            = packet->mad.hdr.sl;
	ah_attr.src_path_bits = packet->mad.hdr.path_bits;
L
Linus Torvalds 已提交
485
	ah_attr.port_num      = file->port->port_num;
486
	if (packet->mad.hdr.grh_present) {
L
Linus Torvalds 已提交
487
		ah_attr.ah_flags = IB_AH_GRH;
488
		memcpy(ah_attr.grh.dgid.raw, packet->mad.hdr.gid, 16);
489
		ah_attr.grh.sgid_index	   = packet->mad.hdr.gid_index;
490
		ah_attr.grh.flow_label 	   = be32_to_cpu(packet->mad.hdr.flow_label);
491 492
		ah_attr.grh.hop_limit  	   = packet->mad.hdr.hop_limit;
		ah_attr.grh.traffic_class  = packet->mad.hdr.traffic_class;
L
Linus Torvalds 已提交
493 494
	}

495 496 497
	ah = ib_create_ah(agent->qp->pd, &ah_attr);
	if (IS_ERR(ah)) {
		ret = PTR_ERR(ah);
L
Linus Torvalds 已提交
498 499 500
		goto err_up;
	}

501
	rmpp_mad = (struct ib_rmpp_mad *) packet->mad.data;
502 503 504 505 506
	hdr_len = ib_get_mad_data_offset(rmpp_mad->mad_hdr.mgmt_class);
	if (!ib_is_mad_class_rmpp(rmpp_mad->mad_hdr.mgmt_class)) {
		copy_offset = IB_MGMT_MAD_HDR;
		rmpp_active = 0;
	} else {
507 508 509
		copy_offset = IB_MGMT_RMPP_HDR;
		rmpp_active = ib_get_rmpp_flags(&rmpp_mad->rmpp_hdr) &
			      IB_MGMT_RMPP_FLAG_ACTIVE;
510 511
	}

R
Roland Dreier 已提交
512
	data_len = count - hdr_size(file) - hdr_len;
513 514
	packet->msg = ib_create_send_mad(agent,
					 be32_to_cpu(packet->mad.hdr.qpn),
R
Roland Dreier 已提交
515 516
					 packet->mad.hdr.pkey_index, rmpp_active,
					 hdr_len, data_len, GFP_KERNEL);
517 518 519 520
	if (IS_ERR(packet->msg)) {
		ret = PTR_ERR(packet->msg);
		goto err_ah;
	}
L
Linus Torvalds 已提交
521

522 523 524 525
	packet->msg->ah 	= ah;
	packet->msg->timeout_ms = packet->mad.hdr.timeout_ms;
	packet->msg->retries 	= packet->mad.hdr.retries;
	packet->msg->context[0] = packet;
L
Linus Torvalds 已提交
526

527
	/* Copy MAD header.  Any RMPP header is already in place. */
S
Sean Hefty 已提交
528
	memcpy(packet->msg->mad, packet->mad.data, IB_MGMT_MAD_HDR);
529 530 531 532 533 534 535 536 537 538 539 540

	if (!rmpp_active) {
		if (copy_from_user(packet->msg->mad + copy_offset,
				   buf + copy_offset,
				   hdr_len + data_len - copy_offset)) {
			ret = -EFAULT;
			goto err_msg;
		}
	} else {
		ret = copy_rmpp_mad(packet->msg, buf);
		if (ret)
			goto err_msg;
541 542 543
	}

	/*
544 545 546
	 * Set the high-order part of the transaction ID to make MADs from
	 * different agents unique, and allow routing responses back to the
	 * original requestor.
547
	 */
548
	if (!ib_response_mad(packet->msg->mad)) {
549
		tid = &((struct ib_mad_hdr *) packet->msg->mad)->tid;
550 551
		*tid = cpu_to_be64(((u64) agent->hi_tid) << 32 |
				   (be64_to_cpup(tid) & 0xffffffff));
552 553 554 555 556 557 558 559 560 561 562
		rmpp_mad->mad_hdr.tid = *tid;
	}

	spin_lock_irq(&file->send_lock);
	ret = is_duplicate(file, packet);
	if (!ret)
		list_add_tail(&packet->list, &file->send_list);
	spin_unlock_irq(&file->send_lock);
	if (ret) {
		ret = -EINVAL;
		goto err_msg;
L
Linus Torvalds 已提交
563 564
	}

565
	ret = ib_post_send_mad(packet->msg, NULL);
566
	if (ret)
567
		goto err_send;
568

569
	mutex_unlock(&file->mutex);
S
Sean Hefty 已提交
570
	return count;
571

572 573
err_send:
	dequeue_send(file, packet);
574 575 576
err_msg:
	ib_free_send_mad(packet->msg);
err_ah:
577
	ib_destroy_ah(ah);
L
Linus Torvalds 已提交
578
err_up:
579
	mutex_unlock(&file->mutex);
L
Linus Torvalds 已提交
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
err:
	kfree(packet);
	return ret;
}

static unsigned int ib_umad_poll(struct file *filp, struct poll_table_struct *wait)
{
	struct ib_umad_file *file = filp->private_data;

	/* we will always be able to post a MAD send */
	unsigned int mask = POLLOUT | POLLWRNORM;

	poll_wait(filp, &file->recv_wait, wait);

	if (!list_empty(&file->recv_list))
		mask |= POLLIN | POLLRDNORM;

	return mask;
}

600 601
static int ib_umad_reg_agent(struct ib_umad_file *file, void __user *arg,
			     int compat_method_mask)
L
Linus Torvalds 已提交
602 603 604
{
	struct ib_user_mad_reg_req ureq;
	struct ib_mad_reg_req req;
605
	struct ib_mad_agent *agent = NULL;
L
Linus Torvalds 已提交
606 607 608
	int agent_id;
	int ret;

609 610
	mutex_lock(&file->port->file_mutex);
	mutex_lock(&file->mutex);
611 612 613 614 615

	if (!file->port->ib_dev) {
		ret = -EPIPE;
		goto out;
	}
L
Linus Torvalds 已提交
616

617
	if (copy_from_user(&ureq, arg, sizeof ureq)) {
L
Linus Torvalds 已提交
618 619 620 621 622 623 624 625 626 627
		ret = -EFAULT;
		goto out;
	}

	if (ureq.qpn != 0 && ureq.qpn != 1) {
		ret = -EINVAL;
		goto out;
	}

	for (agent_id = 0; agent_id < IB_UMAD_MAX_AGENTS; ++agent_id)
628
		if (!__get_agent(file, agent_id))
L
Linus Torvalds 已提交
629 630 631 632 633 634
			goto found;

	ret = -ENOMEM;
	goto out;

found:
635 636 637
	if (ureq.mgmt_class) {
		req.mgmt_class         = ureq.mgmt_class;
		req.mgmt_class_version = ureq.mgmt_class_version;
638 639 640 641 642 643 644 645 646 647 648 649
		memcpy(req.oui, ureq.oui, sizeof req.oui);

		if (compat_method_mask) {
			u32 *umm = (u32 *) ureq.method_mask;
			int i;

			for (i = 0; i < BITS_TO_LONGS(IB_MGMT_MAX_METHODS); ++i)
				req.method_mask[i] =
					umm[i * 2] | ((u64) umm[i * 2 + 1] << 32);
		} else
			memcpy(req.method_mask, ureq.method_mask,
			       sizeof req.method_mask);
650
	}
L
Linus Torvalds 已提交
651 652 653

	agent = ib_register_mad_agent(file->port->ib_dev, file->port->port_num,
				      ureq.qpn ? IB_QPT_GSI : IB_QPT_SMI,
654
				      ureq.mgmt_class ? &req : NULL,
655 656
				      ureq.rmpp_version,
				      send_handler, recv_handler, file);
L
Linus Torvalds 已提交
657 658
	if (IS_ERR(agent)) {
		ret = PTR_ERR(agent);
659
		agent = NULL;
L
Linus Torvalds 已提交
660 661 662 663 664 665
		goto out;
	}

	if (put_user(agent_id,
		     (u32 __user *) (arg + offsetof(struct ib_user_mad_reg_req, id)))) {
		ret = -EFAULT;
666
		goto out;
L
Linus Torvalds 已提交
667 668
	}

R
Roland Dreier 已提交
669 670 671 672 673 674 675 676 677 678
	if (!file->already_used) {
		file->already_used = 1;
		if (!file->use_pkey_index) {
			printk(KERN_WARNING "user_mad: process %s did not enable "
			       "P_Key index support.\n", current->comm);
			printk(KERN_WARNING "user_mad:   Documentation/infiniband/user_mad.txt "
			       "has info on the new ABI.\n");
		}
	}

679
	file->agent[agent_id] = agent;
L
Linus Torvalds 已提交
680
	ret = 0;
681

L
Linus Torvalds 已提交
682
out:
683 684 685 686 687 688 689
	mutex_unlock(&file->mutex);

	if (ret && agent)
		ib_unregister_mad_agent(agent);

	mutex_unlock(&file->port->file_mutex);

L
Linus Torvalds 已提交
690 691 692
	return ret;
}

693
static int ib_umad_unreg_agent(struct ib_umad_file *file, u32 __user *arg)
L
Linus Torvalds 已提交
694
{
695
	struct ib_mad_agent *agent = NULL;
L
Linus Torvalds 已提交
696 697 698
	u32 id;
	int ret = 0;

699
	if (get_user(id, arg))
700
		return -EFAULT;
L
Linus Torvalds 已提交
701

702 703
	mutex_lock(&file->port->file_mutex);
	mutex_lock(&file->mutex);
L
Linus Torvalds 已提交
704

705
	if (id < 0 || id >= IB_UMAD_MAX_AGENTS || !__get_agent(file, id)) {
L
Linus Torvalds 已提交
706 707 708 709
		ret = -EINVAL;
		goto out;
	}

710
	agent = file->agent[id];
L
Linus Torvalds 已提交
711 712 713
	file->agent[id] = NULL;

out:
714
	mutex_unlock(&file->mutex);
715

716
	if (agent)
717 718
		ib_unregister_mad_agent(agent);

719 720
	mutex_unlock(&file->port->file_mutex);

L
Linus Torvalds 已提交
721 722 723
	return ret;
}

R
Roland Dreier 已提交
724 725 726 727
static long ib_umad_enable_pkey(struct ib_umad_file *file)
{
	int ret = 0;

728
	mutex_lock(&file->mutex);
R
Roland Dreier 已提交
729 730 731 732
	if (file->already_used)
		ret = -EINVAL;
	else
		file->use_pkey_index = 1;
733
	mutex_unlock(&file->mutex);
R
Roland Dreier 已提交
734 735 736 737

	return ret;
}

738 739
static long ib_umad_ioctl(struct file *filp, unsigned int cmd,
			  unsigned long arg)
L
Linus Torvalds 已提交
740 741 742
{
	switch (cmd) {
	case IB_USER_MAD_REGISTER_AGENT:
743
		return ib_umad_reg_agent(filp->private_data, (void __user *) arg, 0);
L
Linus Torvalds 已提交
744
	case IB_USER_MAD_UNREGISTER_AGENT:
745
		return ib_umad_unreg_agent(filp->private_data, (__u32 __user *) arg);
R
Roland Dreier 已提交
746 747
	case IB_USER_MAD_ENABLE_PKEY:
		return ib_umad_enable_pkey(filp->private_data);
L
Linus Torvalds 已提交
748 749 750 751 752
	default:
		return -ENOIOCTLCMD;
	}
}

753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769
#ifdef CONFIG_COMPAT
static long ib_umad_compat_ioctl(struct file *filp, unsigned int cmd,
				 unsigned long arg)
{
	switch (cmd) {
	case IB_USER_MAD_REGISTER_AGENT:
		return ib_umad_reg_agent(filp->private_data, compat_ptr(arg), 1);
	case IB_USER_MAD_UNREGISTER_AGENT:
		return ib_umad_unreg_agent(filp->private_data, compat_ptr(arg));
	case IB_USER_MAD_ENABLE_PKEY:
		return ib_umad_enable_pkey(filp->private_data);
	default:
		return -ENOIOCTLCMD;
	}
}
#endif

770 771 772
/*
 * ib_umad_open() does not need the BKL:
 *
A
Alexander Chiang 已提交
773
 *  - the ib_umad_port structures are properly reference counted, and
774 775 776 777 778
 *    everything else is purely local to the file being created, so
 *    races against other open calls are not a problem;
 *  - the ioctl method does not affect any global state outside of the
 *    file structure being operated on;
 */
L
Linus Torvalds 已提交
779 780
static int ib_umad_open(struct inode *inode, struct file *filp)
{
781
	struct ib_umad_port *port;
L
Linus Torvalds 已提交
782
	struct ib_umad_file *file;
783
	int ret = 0;
L
Linus Torvalds 已提交
784

A
Alexander Chiang 已提交
785
	port = container_of(inode->i_cdev, struct ib_umad_port, cdev);
786 787
	if (port)
		kref_get(&port->umad_dev->ref);
A
Alexander Chiang 已提交
788
	else
789 790
		return -ENXIO;

791
	mutex_lock(&port->file_mutex);
792 793 794 795 796 797

	if (!port->ib_dev) {
		ret = -ENXIO;
		goto out;
	}

S
Sean Hefty 已提交
798
	file = kzalloc(sizeof *file, GFP_KERNEL);
799 800
	if (!file) {
		kref_put(&port->umad_dev->ref, ib_umad_release_dev);
801 802
		ret = -ENOMEM;
		goto out;
803
	}
L
Linus Torvalds 已提交
804

805
	mutex_init(&file->mutex);
806
	spin_lock_init(&file->send_lock);
L
Linus Torvalds 已提交
807
	INIT_LIST_HEAD(&file->recv_list);
808
	INIT_LIST_HEAD(&file->send_list);
L
Linus Torvalds 已提交
809 810 811 812 813
	init_waitqueue_head(&file->recv_wait);

	file->port = port;
	filp->private_data = file;

814 815 816
	list_add_tail(&file->port_list, &port->file_list);

out:
817
	mutex_unlock(&port->file_mutex);
818
	return ret;
L
Linus Torvalds 已提交
819 820 821 822 823
}

static int ib_umad_close(struct inode *inode, struct file *filp)
{
	struct ib_umad_file *file = filp->private_data;
824
	struct ib_umad_device *dev = file->port->umad_dev;
825
	struct ib_umad_packet *packet, *tmp;
826
	int already_dead;
L
Linus Torvalds 已提交
827 828
	int i;

829 830
	mutex_lock(&file->port->file_mutex);
	mutex_lock(&file->mutex);
831 832 833

	already_dead = file->agents_dead;
	file->agents_dead = 1;
L
Linus Torvalds 已提交
834

835 836 837
	list_for_each_entry_safe(packet, tmp, &file->recv_list, list) {
		if (packet->recv_wc)
			ib_free_recv_mad(packet->recv_wc);
838
		kfree(packet);
839
	}
840

841 842
	list_del(&file->port_list);

843
	mutex_unlock(&file->mutex);
844 845 846 847 848

	if (!already_dead)
		for (i = 0; i < IB_UMAD_MAX_AGENTS; ++i)
			if (file->agent[i])
				ib_unregister_mad_agent(file->agent[i]);
L
Linus Torvalds 已提交
849

850
	mutex_unlock(&file->port->file_mutex);
851 852

	kfree(file);
853 854
	kref_put(&dev->ref, ib_umad_release_dev);

L
Linus Torvalds 已提交
855 856 857
	return 0;
}

858
static const struct file_operations umad_fops = {
859 860 861 862
	.owner 	 	= THIS_MODULE,
	.read 	 	= ib_umad_read,
	.write 	 	= ib_umad_write,
	.poll 	 	= ib_umad_poll,
L
Linus Torvalds 已提交
863
	.unlocked_ioctl = ib_umad_ioctl,
864 865 866
#ifdef CONFIG_COMPAT
	.compat_ioctl 	= ib_umad_compat_ioctl,
#endif
867 868
	.open 	 	= ib_umad_open,
	.release 	= ib_umad_close
L
Linus Torvalds 已提交
869 870 871 872
};

static int ib_umad_sm_open(struct inode *inode, struct file *filp)
{
873
	struct ib_umad_port *port;
L
Linus Torvalds 已提交
874 875 876 877 878
	struct ib_port_modify props = {
		.set_port_cap_mask = IB_PORT_SM
	};
	int ret;

A
Alexander Chiang 已提交
879
	port = container_of(inode->i_cdev, struct ib_umad_port, sm_cdev);
880 881
	if (port)
		kref_get(&port->umad_dev->ref);
A
Alexander Chiang 已提交
882
	else
883 884
		return -ENXIO;

L
Linus Torvalds 已提交
885
	if (filp->f_flags & O_NONBLOCK) {
886 887 888 889
		if (down_trylock(&port->sm_sem)) {
			ret = -EAGAIN;
			goto fail;
		}
L
Linus Torvalds 已提交
890
	} else {
891 892 893 894
		if (down_interruptible(&port->sm_sem)) {
			ret = -ERESTARTSYS;
			goto fail;
		}
L
Linus Torvalds 已提交
895 896 897 898 899
	}

	ret = ib_modify_port(port->ib_dev, port->port_num, 0, &props);
	if (ret) {
		up(&port->sm_sem);
900
		goto fail;
L
Linus Torvalds 已提交
901 902 903 904 905
	}

	filp->private_data = port;

	return 0;
906 907 908 909

fail:
	kref_put(&port->umad_dev->ref, ib_umad_release_dev);
	return ret;
L
Linus Torvalds 已提交
910 911 912 913 914 915 916 917
}

static int ib_umad_sm_close(struct inode *inode, struct file *filp)
{
	struct ib_umad_port *port = filp->private_data;
	struct ib_port_modify props = {
		.clr_port_cap_mask = IB_PORT_SM
	};
918 919
	int ret = 0;

920
	mutex_lock(&port->file_mutex);
921 922
	if (port->ib_dev)
		ret = ib_modify_port(port->ib_dev, port->port_num, 0, &props);
923
	mutex_unlock(&port->file_mutex);
L
Linus Torvalds 已提交
924 925 926

	up(&port->sm_sem);

927 928
	kref_put(&port->umad_dev->ref, ib_umad_release_dev);

L
Linus Torvalds 已提交
929 930 931
	return ret;
}

932
static const struct file_operations umad_sm_fops = {
L
Linus Torvalds 已提交
933 934 935 936 937 938 939 940 941 942 943
	.owner 	 = THIS_MODULE,
	.open 	 = ib_umad_sm_open,
	.release = ib_umad_sm_close
};

static struct ib_client umad_client = {
	.name   = "umad",
	.add    = ib_umad_add_one,
	.remove = ib_umad_remove_one
};

944 945
static ssize_t show_ibdev(struct device *dev, struct device_attribute *attr,
			  char *buf)
L
Linus Torvalds 已提交
946
{
947
	struct ib_umad_port *port = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
948

949 950 951
	if (!port)
		return -ENODEV;

L
Linus Torvalds 已提交
952 953
	return sprintf(buf, "%s\n", port->ib_dev->name);
}
954
static DEVICE_ATTR(ibdev, S_IRUGO, show_ibdev, NULL);
L
Linus Torvalds 已提交
955

956 957
static ssize_t show_port(struct device *dev, struct device_attribute *attr,
			 char *buf)
L
Linus Torvalds 已提交
958
{
959
	struct ib_umad_port *port = dev_get_drvdata(dev);
L
Linus Torvalds 已提交
960

961 962 963
	if (!port)
		return -ENODEV;

L
Linus Torvalds 已提交
964 965
	return sprintf(buf, "%d\n", port->port_num);
}
966
static DEVICE_ATTR(port, S_IRUGO, show_port, NULL);
L
Linus Torvalds 已提交
967 968 969 970 971 972 973 974 975 976

static ssize_t show_abi_version(struct class *class, char *buf)
{
	return sprintf(buf, "%d\n", IB_USER_MAD_ABI_VERSION);
}
static CLASS_ATTR(abi_version, S_IRUGO, show_abi_version, NULL);

static int ib_umad_init_port(struct ib_device *device, int port_num,
			     struct ib_umad_port *port)
{
977 978 979 980
	spin_lock(&port_lock);
	port->dev_num = find_first_zero_bit(dev_map, IB_UMAD_MAX_PORTS);
	if (port->dev_num >= IB_UMAD_MAX_PORTS) {
		spin_unlock(&port_lock);
L
Linus Torvalds 已提交
981 982
		return -1;
	}
983 984
	set_bit(port->dev_num, dev_map);
	spin_unlock(&port_lock);
L
Linus Torvalds 已提交
985 986 987 988

	port->ib_dev   = device;
	port->port_num = port_num;
	init_MUTEX(&port->sm_sem);
989
	mutex_init(&port->file_mutex);
990
	INIT_LIST_HEAD(&port->file_list);
L
Linus Torvalds 已提交
991

992 993 994 995
	cdev_init(&port->cdev, &umad_fops);
	port->cdev.owner = THIS_MODULE;
	kobject_set_name(&port->cdev.kobj, "umad%d", port->dev_num);
	if (cdev_add(&port->cdev, base_dev + port->dev_num, 1))
L
Linus Torvalds 已提交
996 997
		goto err_cdev;

998
	port->dev = device_create(umad_class, device->dma_device,
999
				  port->cdev.dev, port,
1000
				  "umad%d", port->dev_num);
1001
	if (IS_ERR(port->dev))
1002
		goto err_cdev;
L
Linus Torvalds 已提交
1003

1004 1005 1006 1007 1008
	if (device_create_file(port->dev, &dev_attr_ibdev))
		goto err_dev;
	if (device_create_file(port->dev, &dev_attr_port))
		goto err_dev;

1009 1010 1011 1012
	cdev_init(&port->sm_cdev, &umad_sm_fops);
	port->sm_cdev.owner = THIS_MODULE;
	kobject_set_name(&port->sm_cdev.kobj, "issm%d", port->dev_num);
	if (cdev_add(&port->sm_cdev, base_dev + port->dev_num + IB_UMAD_MAX_PORTS, 1))
1013
		goto err_sm_cdev;
L
Linus Torvalds 已提交
1014

1015
	port->sm_dev = device_create(umad_class, device->dma_device,
1016
				     port->sm_cdev.dev, port,
1017
				     "issm%d", port->dev_num);
1018
	if (IS_ERR(port->sm_dev))
L
Linus Torvalds 已提交
1019 1020
		goto err_sm_cdev;

1021 1022 1023 1024
	if (device_create_file(port->sm_dev, &dev_attr_ibdev))
		goto err_sm_dev;
	if (device_create_file(port->sm_dev, &dev_attr_port))
		goto err_sm_dev;
L
Linus Torvalds 已提交
1025 1026 1027

	return 0;

1028
err_sm_dev:
1029
	device_destroy(umad_class, port->sm_cdev.dev);
L
Linus Torvalds 已提交
1030 1031

err_sm_cdev:
1032
	cdev_del(&port->sm_cdev);
L
Linus Torvalds 已提交
1033

1034
err_dev:
1035
	device_destroy(umad_class, port->cdev.dev);
L
Linus Torvalds 已提交
1036 1037

err_cdev:
1038
	cdev_del(&port->cdev);
1039
	clear_bit(port->dev_num, dev_map);
L
Linus Torvalds 已提交
1040 1041 1042 1043

	return -1;
}

1044 1045
static void ib_umad_kill_port(struct ib_umad_port *port)
{
1046
	struct ib_umad_file *file;
1047
	int already_dead;
1048 1049
	int id;

1050 1051
	dev_set_drvdata(port->dev,    NULL);
	dev_set_drvdata(port->sm_dev, NULL);
1052

1053 1054
	device_destroy(umad_class, port->cdev.dev);
	device_destroy(umad_class, port->sm_cdev.dev);
1055

1056 1057
	cdev_del(&port->cdev);
	cdev_del(&port->sm_cdev);
1058

1059
	mutex_lock(&port->file_mutex);
1060 1061 1062

	port->ib_dev = NULL;

1063 1064 1065
	list_for_each_entry(file, &port->file_list, port_list) {
		mutex_lock(&file->mutex);
		already_dead = file->agents_dead;
1066
		file->agents_dead = 1;
1067
		mutex_unlock(&file->mutex);
1068 1069 1070 1071 1072

		for (id = 0; id < IB_UMAD_MAX_AGENTS; ++id)
			if (file->agent[id])
				ib_unregister_mad_agent(file->agent[id]);
	}
1073

1074
	mutex_unlock(&port->file_mutex);
1075

1076 1077 1078
	clear_bit(port->dev_num, dev_map);
}

L
Linus Torvalds 已提交
1079 1080 1081 1082 1083
static void ib_umad_add_one(struct ib_device *device)
{
	struct ib_umad_device *umad_dev;
	int s, e, i;

T
Tom Tucker 已提交
1084 1085 1086 1087
	if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
		return;

	if (device->node_type == RDMA_NODE_IB_SWITCH)
L
Linus Torvalds 已提交
1088 1089 1090 1091 1092 1093
		s = e = 0;
	else {
		s = 1;
		e = device->phys_port_cnt;
	}

S
Sean Hefty 已提交
1094
	umad_dev = kzalloc(sizeof *umad_dev +
L
Linus Torvalds 已提交
1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
			   (e - s + 1) * sizeof (struct ib_umad_port),
			   GFP_KERNEL);
	if (!umad_dev)
		return;

	kref_init(&umad_dev->ref);

	umad_dev->start_port = s;
	umad_dev->end_port   = e;

	for (i = s; i <= e; ++i) {
		umad_dev->port[i - s].umad_dev = umad_dev;

		if (ib_umad_init_port(device, i, &umad_dev->port[i - s]))
			goto err;
	}

	ib_set_client_data(device, &umad_client, umad_dev);

	return;

err:
1117
	while (--i >= s)
M
Michael S. Tsirkin 已提交
1118
		ib_umad_kill_port(&umad_dev->port[i - s]);
L
Linus Torvalds 已提交
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130

	kref_put(&umad_dev->ref, ib_umad_release_dev);
}

static void ib_umad_remove_one(struct ib_device *device)
{
	struct ib_umad_device *umad_dev = ib_get_client_data(device, &umad_client);
	int i;

	if (!umad_dev)
		return;

1131 1132
	for (i = 0; i <= umad_dev->end_port - umad_dev->start_port; ++i)
		ib_umad_kill_port(&umad_dev->port[i]);
L
Linus Torvalds 已提交
1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147

	kref_put(&umad_dev->ref, ib_umad_release_dev);
}

static int __init ib_umad_init(void)
{
	int ret;

	ret = register_chrdev_region(base_dev, IB_UMAD_MAX_PORTS * 2,
				     "infiniband_mad");
	if (ret) {
		printk(KERN_ERR "user_mad: couldn't register device number\n");
		goto out;
	}

1148 1149 1150
	umad_class = class_create(THIS_MODULE, "infiniband_mad");
	if (IS_ERR(umad_class)) {
		ret = PTR_ERR(umad_class);
L
Linus Torvalds 已提交
1151 1152 1153 1154
		printk(KERN_ERR "user_mad: couldn't create class infiniband_mad\n");
		goto out_chrdev;
	}

1155
	ret = class_create_file(umad_class, &class_attr_abi_version);
L
Linus Torvalds 已提交
1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
	if (ret) {
		printk(KERN_ERR "user_mad: couldn't create abi_version attribute\n");
		goto out_class;
	}

	ret = ib_register_client(&umad_client);
	if (ret) {
		printk(KERN_ERR "user_mad: couldn't register ib_umad client\n");
		goto out_class;
	}

	return 0;

out_class:
1170
	class_destroy(umad_class);
L
Linus Torvalds 已提交
1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181

out_chrdev:
	unregister_chrdev_region(base_dev, IB_UMAD_MAX_PORTS * 2);

out:
	return ret;
}

static void __exit ib_umad_cleanup(void)
{
	ib_unregister_client(&umad_client);
1182
	class_destroy(umad_class);
L
Linus Torvalds 已提交
1183 1184 1185 1186 1187
	unregister_chrdev_region(base_dev, IB_UMAD_MAX_PORTS * 2);
}

module_init(ib_umad_init);
module_exit(ib_umad_cleanup);