i2o_block.c 30.9 KB
Newer Older
L
Linus Torvalds 已提交
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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
/*
 *	Block OSM
 *
 * 	Copyright (C) 1999-2002	Red Hat Software
 *
 *	Written by Alan Cox, Building Number Three Ltd
 *
 *	This program is free software; you can redistribute it and/or modify it
 *	under the terms of the GNU General Public License as published by the
 *	Free Software Foundation; either version 2 of the License, or (at your
 *	option) any later version.
 *
 *	This program is distributed in the hope that it will be useful, but
 *	WITHOUT ANY WARRANTY; without even the implied warranty of
 *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *	General Public License for more details.
 *
 *	For the purpose of avoiding doubt the preferred form of the work
 *	for making modifications shall be a standards compliant form such
 *	gzipped tar and not one requiring a proprietary or patent encumbered
 *	tool to unpack.
 *
 *	Fixes/additions:
 *		Steve Ralston:
 *			Multiple device handling error fixes,
 *			Added a queue depth.
 *		Alan Cox:
 *			FC920 has an rmw bug. Dont or in the end marker.
 *			Removed queue walk, fixed for 64bitness.
 *			Rewrote much of the code over time
 *			Added indirect block lists
 *			Handle 64K limits on many controllers
 *			Don't use indirects on the Promise (breaks)
 *			Heavily chop down the queue depths
 *		Deepak Saxena:
 *			Independent queues per IOP
 *			Support for dynamic device creation/deletion
 *			Code cleanup
 *	    		Support for larger I/Os through merge* functions
 *			(taken from DAC960 driver)
 *		Boji T Kannanthanam:
 *			Set the I2O Block devices to be detected in increasing
 *			order of TIDs during boot.
 *			Search and set the I2O block device that we boot off
 *			from as the first device to be claimed (as /dev/i2o/hda)
 *			Properly attach/detach I2O gendisk structure from the
 *			system gendisk list. The I2O block devices now appear in
 *			/proc/partitions.
 *		Markus Lidel <Markus.Lidel@shadowconnect.com>:
 *			Minor bugfixes for 2.6.
 */

#include <linux/module.h>
54
#include <linux/slab.h>
L
Linus Torvalds 已提交
55
#include <linux/i2o.h>
56
#include <linux/mutex.h>
L
Linus Torvalds 已提交
57 58 59 60 61 62 63

#include <linux/mempool.h>

#include <linux/genhd.h>
#include <linux/blkdev.h>
#include <linux/hdreg.h>

M
Markus Lidel 已提交
64 65
#include <scsi/scsi.h>

L
Linus Torvalds 已提交
66 67 68
#include "i2o_block.h"

#define OSM_NAME	"block-osm"
M
Markus Lidel 已提交
69
#define OSM_VERSION	"1.325"
L
Linus Torvalds 已提交
70 71
#define OSM_DESCRIPTION	"I2O Block Device OSM"

72
static DEFINE_MUTEX(i2o_block_mutex);
L
Linus Torvalds 已提交
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
static struct i2o_driver i2o_block_driver;

/* global Block OSM request mempool */
static struct i2o_block_mempool i2o_blk_req_pool;

/* Block OSM class handling definition */
static struct i2o_class_id i2o_block_class_id[] = {
	{I2O_CLASS_RANDOM_BLOCK_STORAGE},
	{I2O_CLASS_END}
};

/**
 *	i2o_block_device_free - free the memory of the I2O Block device
 *	@dev: I2O Block device, which should be cleaned up
 *
 *	Frees the request queue, gendisk and the i2o_block_device structure.
 */
static void i2o_block_device_free(struct i2o_block_device *dev)
{
	blk_cleanup_queue(dev->gd->queue);

	put_disk(dev->gd);

	kfree(dev);
};

/**
 *	i2o_block_remove - remove the I2O Block device from the system again
 *	@dev: I2O Block device which should be removed
 *
 *	Remove gendisk from system and free all allocated memory.
 *
 *	Always returns 0.
 */
static int i2o_block_remove(struct device *dev)
{
	struct i2o_device *i2o_dev = to_i2o_device(dev);
	struct i2o_block_device *i2o_blk_dev = dev_get_drvdata(dev);

112 113
	osm_info("device removed (TID: %03x): %s\n", i2o_dev->lct_data.tid,
		 i2o_blk_dev->gd->disk_name);
L
Linus Torvalds 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137

	i2o_event_register(i2o_dev, &i2o_block_driver, 0, 0);

	del_gendisk(i2o_blk_dev->gd);

	dev_set_drvdata(dev, NULL);

	i2o_device_claim_release(i2o_dev);

	i2o_block_device_free(i2o_blk_dev);

	return 0;
};

/**
 *	i2o_block_device flush - Flush all dirty data of I2O device dev
 *	@dev: I2O device which should be flushed
 *
 *	Flushes all dirty data on device dev.
 *
 *	Returns 0 on success or negative error code on failure.
 */
static int i2o_block_device_flush(struct i2o_device *dev)
{
138
	struct i2o_message *msg;
L
Linus Torvalds 已提交
139

140 141 142
	msg = i2o_msg_get_wait(dev->iop, I2O_TIMEOUT_MESSAGE_GET);
	if (IS_ERR(msg))
		return PTR_ERR(msg);
L
Linus Torvalds 已提交
143

144 145 146 147 148
	msg->u.head[0] = cpu_to_le32(FIVE_WORD_MSG_SIZE | SGL_OFFSET_0);
	msg->u.head[1] =
	    cpu_to_le32(I2O_CMD_BLOCK_CFLUSH << 24 | HOST_TID << 12 | dev->
			lct_data.tid);
	msg->body[0] = cpu_to_le32(60 << 16);
L
Linus Torvalds 已提交
149 150
	osm_debug("Flushing...\n");

151
	return i2o_msg_post_wait(dev->iop, msg, 60);
L
Linus Torvalds 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165
};

/**
 *	i2o_block_device_mount - Mount (load) the media of device dev
 *	@dev: I2O device which should receive the mount request
 *	@media_id: Media Identifier
 *
 *	Load a media into drive. Identifier should be set to -1, because the
 *	spec does not support any other value.
 *
 *	Returns 0 on success or negative error code on failure.
 */
static int i2o_block_device_mount(struct i2o_device *dev, u32 media_id)
{
166 167 168 169 170 171 172 173 174 175 176 177
	struct i2o_message *msg;

	msg = i2o_msg_get_wait(dev->iop, I2O_TIMEOUT_MESSAGE_GET);
	if (IS_ERR(msg))
		return PTR_ERR(msg);

	msg->u.head[0] = cpu_to_le32(FIVE_WORD_MSG_SIZE | SGL_OFFSET_0);
	msg->u.head[1] =
	    cpu_to_le32(I2O_CMD_BLOCK_MMOUNT << 24 | HOST_TID << 12 | dev->
			lct_data.tid);
	msg->body[0] = cpu_to_le32(-1);
	msg->body[1] = cpu_to_le32(0x00000000);
L
Linus Torvalds 已提交
178 179
	osm_debug("Mounting...\n");

180
	return i2o_msg_post_wait(dev->iop, msg, 2);
L
Linus Torvalds 已提交
181 182 183 184 185 186 187 188 189 190 191 192 193 194
};

/**
 *	i2o_block_device_lock - Locks the media of device dev
 *	@dev: I2O device which should receive the lock request
 *	@media_id: Media Identifier
 *
 *	Lock media of device dev to prevent removal. The media identifier
 *	should be set to -1, because the spec does not support any other value.
 *
 *	Returns 0 on success or negative error code on failure.
 */
static int i2o_block_device_lock(struct i2o_device *dev, u32 media_id)
{
195
	struct i2o_message *msg;
L
Linus Torvalds 已提交
196

197
	msg = i2o_msg_get_wait(dev->iop, I2O_TIMEOUT_MESSAGE_GET);
198
	if (IS_ERR(msg))
199
		return PTR_ERR(msg);
L
Linus Torvalds 已提交
200

201 202 203 204 205
	msg->u.head[0] = cpu_to_le32(FIVE_WORD_MSG_SIZE | SGL_OFFSET_0);
	msg->u.head[1] =
	    cpu_to_le32(I2O_CMD_BLOCK_MLOCK << 24 | HOST_TID << 12 | dev->
			lct_data.tid);
	msg->body[0] = cpu_to_le32(-1);
L
Linus Torvalds 已提交
206 207
	osm_debug("Locking...\n");

208
	return i2o_msg_post_wait(dev->iop, msg, 2);
L
Linus Torvalds 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221 222
};

/**
 *	i2o_block_device_unlock - Unlocks the media of device dev
 *	@dev: I2O device which should receive the unlocked request
 *	@media_id: Media Identifier
 *
 *	Unlocks the media in device dev. The media identifier should be set to
 *	-1, because the spec does not support any other value.
 *
 *	Returns 0 on success or negative error code on failure.
 */
static int i2o_block_device_unlock(struct i2o_device *dev, u32 media_id)
{
223
	struct i2o_message *msg;
L
Linus Torvalds 已提交
224

225 226 227
	msg = i2o_msg_get_wait(dev->iop, I2O_TIMEOUT_MESSAGE_GET);
	if (IS_ERR(msg))
		return PTR_ERR(msg);
L
Linus Torvalds 已提交
228

229 230 231 232 233
	msg->u.head[0] = cpu_to_le32(FIVE_WORD_MSG_SIZE | SGL_OFFSET_0);
	msg->u.head[1] =
	    cpu_to_le32(I2O_CMD_BLOCK_MUNLOCK << 24 | HOST_TID << 12 | dev->
			lct_data.tid);
	msg->body[0] = cpu_to_le32(media_id);
L
Linus Torvalds 已提交
234 235
	osm_debug("Unlocking...\n");

236
	return i2o_msg_post_wait(dev->iop, msg, 2);
L
Linus Torvalds 已提交
237 238 239 240 241
};

/**
 *	i2o_block_device_power - Power management for device dev
 *	@dev: I2O device which should receive the power management request
242
 *	@op: Operation to send
L
Linus Torvalds 已提交
243 244 245 246 247 248 249 250 251
 *
 *	Send a power management request to the device dev.
 *
 *	Returns 0 on success or negative error code on failure.
 */
static int i2o_block_device_power(struct i2o_block_device *dev, u8 op)
{
	struct i2o_device *i2o_dev = dev->i2o_dev;
	struct i2o_controller *c = i2o_dev->iop;
252
	struct i2o_message *msg;
L
Linus Torvalds 已提交
253 254
	int rc;

255 256 257
	msg = i2o_msg_get_wait(c, I2O_TIMEOUT_MESSAGE_GET);
	if (IS_ERR(msg))
		return PTR_ERR(msg);
L
Linus Torvalds 已提交
258

259 260 261 262 263
	msg->u.head[0] = cpu_to_le32(FOUR_WORD_MSG_SIZE | SGL_OFFSET_0);
	msg->u.head[1] =
	    cpu_to_le32(I2O_CMD_BLOCK_POWER << 24 | HOST_TID << 12 | i2o_dev->
			lct_data.tid);
	msg->body[0] = cpu_to_le32(op << 24);
L
Linus Torvalds 已提交
264 265
	osm_debug("Power...\n");

266
	rc = i2o_msg_post_wait(c, msg, 60);
L
Linus Torvalds 已提交
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
	if (!rc)
		dev->power = op;

	return rc;
};

/**
 *	i2o_block_request_alloc - Allocate an I2O block request struct
 *
 *	Allocates an I2O block request struct and initialize the list.
 *
 *	Returns a i2o_block_request pointer on success or negative error code
 *	on failure.
 */
static inline struct i2o_block_request *i2o_block_request_alloc(void)
{
	struct i2o_block_request *ireq;

	ireq = mempool_alloc(i2o_blk_req_pool.pool, GFP_ATOMIC);
	if (!ireq)
		return ERR_PTR(-ENOMEM);

	INIT_LIST_HEAD(&ireq->queue);
290
	sg_init_table(ireq->sg_table, I2O_MAX_PHYS_SEGMENTS);
L
Linus Torvalds 已提交
291 292 293 294 295 296 297 298

	return ireq;
};

/**
 *	i2o_block_request_free - Frees a I2O block request
 *	@ireq: I2O block request which should be freed
 *
299
 *	Frees the allocated memory (give it back to the request mempool).
L
Linus Torvalds 已提交
300 301 302 303 304 305 306 307
 */
static inline void i2o_block_request_free(struct i2o_block_request *ireq)
{
	mempool_free(ireq, i2o_blk_req_pool.pool);
};

/**
 *	i2o_block_sglist_alloc - Allocate the SG list and map it
308
 *	@c: I2O controller to which the request belongs
L
Linus Torvalds 已提交
309
 *	@ireq: I2O block request
310
 *	@mptr: message body pointer
L
Linus Torvalds 已提交
311
 *
312
 *	Builds the SG list and map it to be accessible by the controller.
L
Linus Torvalds 已提交
313
 *
314
 *	Returns 0 on failure or 1 on success.
L
Linus Torvalds 已提交
315
 */
316 317
static inline int i2o_block_sglist_alloc(struct i2o_controller *c,
					 struct i2o_block_request *ireq,
318
					 u32 ** mptr)
L
Linus Torvalds 已提交
319 320
{
	int nents;
321
	enum dma_data_direction direction;
L
Linus Torvalds 已提交
322

323
	ireq->dev = &c->pdev->dev;
L
Linus Torvalds 已提交
324 325 326
	nents = blk_rq_map_sg(ireq->req->q, ireq->req, ireq->sg_table);

	if (rq_data_dir(ireq->req) == READ)
327
		direction = PCI_DMA_FROMDEVICE;
L
Linus Torvalds 已提交
328
	else
329
		direction = PCI_DMA_TODEVICE;
L
Linus Torvalds 已提交
330

331
	ireq->sg_nents = nents;
L
Linus Torvalds 已提交
332

333
	return i2o_dma_map_sg(c, ireq->sg_table, nents, direction, mptr);
L
Linus Torvalds 已提交
334 335 336 337 338 339 340 341 342 343
};

/**
 *	i2o_block_sglist_free - Frees the SG list
 *	@ireq: I2O block request from which the SG should be freed
 *
 *	Frees the SG list from the I2O block request.
 */
static inline void i2o_block_sglist_free(struct i2o_block_request *ireq)
{
344
	enum dma_data_direction direction;
L
Linus Torvalds 已提交
345

346 347 348 349 350 351
	if (rq_data_dir(ireq->req) == READ)
		direction = PCI_DMA_FROMDEVICE;
	else
		direction = PCI_DMA_TODEVICE;

	dma_unmap_sg(ireq->dev, ireq->sg_table, ireq->sg_nents, direction);
L
Linus Torvalds 已提交
352 353 354 355 356 357 358 359
};

/**
 *	i2o_block_prep_req_fn - Allocates I2O block device specific struct
 *	@q: request queue for the request
 *	@req: the request to prepare
 *
 *	Allocate the necessary i2o_block_request struct and connect it to
360
 *	the request. This is needed that we not lose the SG list later on.
L
Linus Torvalds 已提交
361 362 363 364 365 366 367 368
 *
 *	Returns BLKPREP_OK on success or BLKPREP_DEFER on failure.
 */
static int i2o_block_prep_req_fn(struct request_queue *q, struct request *req)
{
	struct i2o_block_device *i2o_blk_dev = q->queuedata;
	struct i2o_block_request *ireq;

369 370 371 372 373
	if (unlikely(!i2o_blk_dev)) {
		osm_err("block device already removed\n");
		return BLKPREP_KILL;
	}

L
Linus Torvalds 已提交
374 375 376
	/* connect the i2o_block_request to the request */
	if (!req->special) {
		ireq = i2o_block_request_alloc();
377
		if (IS_ERR(ireq)) {
L
Linus Torvalds 已提交
378 379 380 381 382 383 384
			osm_debug("unable to allocate i2o_block_request!\n");
			return BLKPREP_DEFER;
		}

		ireq->i2o_blk_dev = i2o_blk_dev;
		req->special = ireq;
		ireq->req = req;
385
	}
L
Linus Torvalds 已提交
386
	/* do not come back here */
387
	req->cmd_flags |= REQ_DONTPREP;
L
Linus Torvalds 已提交
388 389 390 391 392 393

	return BLKPREP_OK;
};

/**
 *	i2o_block_delayed_request_fn - delayed request queue function
D
David Howells 已提交
394
 *	@work: the delayed request with the queue to start
L
Linus Torvalds 已提交
395 396 397 398 399 400
 *
 *	If the request queue is stopped for a disk, and there is no open
 *	request, a new event is created, which calls this function to start
 *	the queue after I2O_BLOCK_REQUEST_TIME. Otherwise the queue will never
 *	be started again.
 */
D
David Howells 已提交
401
static void i2o_block_delayed_request_fn(struct work_struct *work)
L
Linus Torvalds 已提交
402
{
D
David Howells 已提交
403 404 405
	struct i2o_block_delayed_request *dreq =
		container_of(work, struct i2o_block_delayed_request,
			     work.work);
L
Linus Torvalds 已提交
406 407 408 409 410 411 412 413 414 415
	struct request_queue *q = dreq->queue;
	unsigned long flags;

	spin_lock_irqsave(q->queue_lock, flags);
	blk_start_queue(q);
	spin_unlock_irqrestore(q->queue_lock, flags);
	kfree(dreq);
};

/**
416 417
 *	i2o_block_end_request - Post-processing of completed commands
 *	@req: request which should be completed
418
 *	@error: 0 for success, < 0 for error
419
 *	@nr_bytes: number of bytes to complete
L
Linus Torvalds 已提交
420
 *
421
 *	Mark the request as complete. The lock must not be held when entering.
L
Linus Torvalds 已提交
422 423
 *
 */
424
static void i2o_block_end_request(struct request *req, int error,
425
				  int nr_bytes)
L
Linus Torvalds 已提交
426
{
427 428
	struct i2o_block_request *ireq = req->special;
	struct i2o_block_device *dev = ireq->i2o_blk_dev;
429
	struct request_queue *q = req->q;
L
Linus Torvalds 已提交
430 431
	unsigned long flags;

432
	if (blk_end_request(req, error, nr_bytes))
433
		if (error)
434
			blk_end_request_all(req, -EIO);
L
Linus Torvalds 已提交
435

436
	spin_lock_irqsave(q->queue_lock, flags);
L
Linus Torvalds 已提交
437

438 439 440 441
	if (likely(dev)) {
		dev->open_queue_depth--;
		list_del(&ireq->queue);
	}
L
Linus Torvalds 已提交
442

443
	blk_start_queue(q);
L
Linus Torvalds 已提交
444

445
	spin_unlock_irqrestore(q->queue_lock, flags);
L
Linus Torvalds 已提交
446

447 448 449
	i2o_block_sglist_free(ireq);
	i2o_block_request_free(ireq);
};
L
Linus Torvalds 已提交
450

451 452 453 454
/**
 *	i2o_block_reply - Block OSM reply handler.
 *	@c: I2O controller from which the message arrives
 *	@m: message id of reply
455
 *	@msg: the actual I2O message reply
456 457 458 459 460 461 462 463
 *
 *	This function gets all the message replies.
 *
 */
static int i2o_block_reply(struct i2o_controller *c, u32 m,
			   struct i2o_message *msg)
{
	struct request *req;
464
	int error = 0;
L
Linus Torvalds 已提交
465 466 467 468 469 470 471 472 473 474 475 476

	req = i2o_cntxt_list_get(c, le32_to_cpu(msg->u.s.tcntxt));
	if (unlikely(!req)) {
		osm_err("NULL reply received!\n");
		return -1;
	}

	/*
	 *      Lets see what is cooking. We stuffed the
	 *      request in the context.
	 */

477 478
	if ((le32_to_cpu(msg->body[0]) >> 24) != 0) {
		u32 status = le32_to_cpu(msg->body[0]);
L
Linus Torvalds 已提交
479 480 481 482 483 484 485 486 487 488 489 490
		/*
		 *      Device not ready means two things. One is that the
		 *      the thing went offline (but not a removal media)
		 *
		 *      The second is that you have a SuperTrak 100 and the
		 *      firmware got constipated. Unlike standard i2o card
		 *      setups the supertrak returns an error rather than
		 *      blocking for the timeout in these cases.
		 *
		 *      Don't stick a supertrak100 into cache aggressive modes
		 */

491 492
		osm_err("TID %03x error status: 0x%02x, detailed status: "
			"0x%04x\n", (le32_to_cpu(msg->u.head[1]) >> 12 & 0xfff),
493
			status >> 24, status & 0xffff);
L
Linus Torvalds 已提交
494

495
		req->errors++;
L
Linus Torvalds 已提交
496

497
		error = -EIO;
498
	}
L
Linus Torvalds 已提交
499

500
	i2o_block_end_request(req, error, le32_to_cpu(msg->body[1]));
L
Linus Torvalds 已提交
501 502 503 504

	return 1;
};

D
David Howells 已提交
505
static void i2o_block_event(struct work_struct *work)
L
Linus Torvalds 已提交
506
{
D
David Howells 已提交
507
	struct i2o_event *evt = container_of(work, struct i2o_event, work);
508
	osm_debug("event received\n");
509
	kfree(evt);
L
Linus Torvalds 已提交
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
};

/*
 *	SCSI-CAM for ioctl geometry mapping
 *	Duplicated with SCSI - this should be moved into somewhere common
 *	perhaps genhd ?
 *
 * LBA -> CHS mapping table taken from:
 *
 * "Incorporating the I2O Architecture into BIOS for Intel Architecture
 *  Platforms"
 *
 * This is an I2O document that is only available to I2O members,
 * not developers.
 *
 * From my understanding, this is how all the I2O cards do this
 *
 * Disk Size      | Sectors | Heads | Cylinders
 * ---------------+---------+-------+-------------------
 * 1 < X <= 528M  | 63      | 16    | X/(63 * 16 * 512)
 * 528M < X <= 1G | 63      | 32    | X/(63 * 32 * 512)
 * 1 < X <528M    | 63      | 16    | X/(63 * 16 * 512)
 * 1 < X <528M    | 63      | 16    | X/(63 * 16 * 512)
 *
 */
#define	BLOCK_SIZE_528M		1081344
#define	BLOCK_SIZE_1G		2097152
#define	BLOCK_SIZE_21G		4403200
#define	BLOCK_SIZE_42G		8806400
#define	BLOCK_SIZE_84G		17612800

static void i2o_block_biosparam(unsigned long capacity, unsigned short *cyls,
				unsigned char *hds, unsigned char *secs)
{
	unsigned long heads, sectors, cylinders;

	sectors = 63L;		/* Maximize sectors per track */
	if (capacity <= BLOCK_SIZE_528M)
		heads = 16;
	else if (capacity <= BLOCK_SIZE_1G)
		heads = 32;
	else if (capacity <= BLOCK_SIZE_21G)
		heads = 64;
	else if (capacity <= BLOCK_SIZE_42G)
		heads = 128;
	else
		heads = 255;

	cylinders = (unsigned long)capacity / (heads * sectors);

	*cyls = (unsigned short)cylinders;	/* Stuff return values */
	*secs = (unsigned char)sectors;
	*hds = (unsigned char)heads;
}

/**
 *	i2o_block_open - Open the block device
R
Randy Dunlap 已提交
567 568
 *	@bdev: block device being opened
 *	@mode: file open mode
L
Linus Torvalds 已提交
569 570 571 572 573 574
 *
 *	Power up the device, mount and lock the media. This function is called,
 *	if the block device is opened for access.
 *
 *	Returns 0 on success or negative error code on failure.
 */
A
Al Viro 已提交
575
static int i2o_block_open(struct block_device *bdev, fmode_t mode)
L
Linus Torvalds 已提交
576
{
A
Al Viro 已提交
577
	struct i2o_block_device *dev = bdev->bd_disk->private_data;
L
Linus Torvalds 已提交
578 579 580 581

	if (!dev->i2o_dev)
		return -ENODEV;

582
	mutex_lock(&i2o_block_mutex);
L
Linus Torvalds 已提交
583 584 585 586 587 588 589 590
	if (dev->power > 0x1f)
		i2o_block_device_power(dev, 0x02);

	i2o_block_device_mount(dev->i2o_dev, -1);

	i2o_block_device_lock(dev->i2o_dev, -1);

	osm_debug("Ready.\n");
591
	mutex_unlock(&i2o_block_mutex);
L
Linus Torvalds 已提交
592 593 594 595 596 597

	return 0;
};

/**
 *	i2o_block_release - Release the I2O block device
R
Randy Dunlap 已提交
598 599
 *	@disk: gendisk device being released
 *	@mode: file open mode
L
Linus Torvalds 已提交
600 601 602 603 604 605
 *
 *	Unlock and unmount the media, and power down the device. Gets called if
 *	the block device is closed.
 *
 *	Returns 0 on success or negative error code on failure.
 */
A
Al Viro 已提交
606
static int i2o_block_release(struct gendisk *disk, fmode_t mode)
L
Linus Torvalds 已提交
607 608 609 610 611 612
{
	struct i2o_block_device *dev = disk->private_data;
	u8 operation;

	/*
	 * This is to deail with the case of an application
L
Lucas De Marchi 已提交
613
	 * opening a device and then the device disappears while
L
Linus Torvalds 已提交
614 615 616 617 618 619 620 621
	 * it's in use, and then the application tries to release
	 * it.  ex: Unmounting a deleted RAID volume at reboot.
	 * If we send messages, it will just cause FAILs since
	 * the TID no longer exists.
	 */
	if (!dev->i2o_dev)
		return 0;

622
	mutex_lock(&i2o_block_mutex);
L
Linus Torvalds 已提交
623 624 625 626 627 628 629 630 631 632
	i2o_block_device_flush(dev->i2o_dev);

	i2o_block_device_unlock(dev->i2o_dev, -1);

	if (dev->flags & (1 << 3 | 1 << 4))	/* Removable */
		operation = 0x21;
	else
		operation = 0x24;

	i2o_block_device_power(dev, operation);
633
	mutex_unlock(&i2o_block_mutex);
L
Linus Torvalds 已提交
634 635 636 637

	return 0;
}

638 639 640 641 642 643 644
static int i2o_block_getgeo(struct block_device *bdev, struct hd_geometry *geo)
{
	i2o_block_biosparam(get_capacity(bdev->bd_disk),
			    &geo->cylinders, &geo->heads, &geo->sectors);
	return 0;
}

L
Linus Torvalds 已提交
645 646
/**
 *	i2o_block_ioctl - Issue device specific ioctl calls.
R
Randy Dunlap 已提交
647 648
 *	@bdev: block device being opened
 *	@mode: file open mode
L
Linus Torvalds 已提交
649 650 651 652 653 654 655
 *	@cmd: ioctl command
 *	@arg: arg
 *
 *	Handles ioctl request for the block device.
 *
 *	Return 0 on success or negative error on failure.
 */
A
Al Viro 已提交
656
static int i2o_block_ioctl(struct block_device *bdev, fmode_t mode,
L
Linus Torvalds 已提交
657 658
			   unsigned int cmd, unsigned long arg)
{
A
Al Viro 已提交
659
	struct gendisk *disk = bdev->bd_disk;
L
Linus Torvalds 已提交
660
	struct i2o_block_device *dev = disk->private_data;
A
Arnd Bergmann 已提交
661
	int ret = -ENOTTY;
L
Linus Torvalds 已提交
662 663 664 665 666 667

	/* Anyone capable of this syscall can do *real bad* things */

	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

668
	mutex_lock(&i2o_block_mutex);
L
Linus Torvalds 已提交
669 670
	switch (cmd) {
	case BLKI2OGRSTRAT:
A
Arnd Bergmann 已提交
671 672
		ret = put_user(dev->rcache, (int __user *)arg);
		break;
L
Linus Torvalds 已提交
673
	case BLKI2OGWSTRAT:
A
Arnd Bergmann 已提交
674 675
		ret = put_user(dev->wcache, (int __user *)arg);
		break;
L
Linus Torvalds 已提交
676
	case BLKI2OSRSTRAT:
A
Arnd Bergmann 已提交
677
		ret = -EINVAL;
L
Linus Torvalds 已提交
678
		if (arg < 0 || arg > CACHE_SMARTFETCH)
A
Arnd Bergmann 已提交
679
			break;
L
Linus Torvalds 已提交
680
		dev->rcache = arg;
A
Arnd Bergmann 已提交
681
		ret = 0;
L
Linus Torvalds 已提交
682 683
		break;
	case BLKI2OSWSTRAT:
A
Arnd Bergmann 已提交
684
		ret = -EINVAL;
L
Linus Torvalds 已提交
685 686
		if (arg != 0
		    && (arg < CACHE_WRITETHROUGH || arg > CACHE_SMARTBACK))
A
Arnd Bergmann 已提交
687
			break;
L
Linus Torvalds 已提交
688
		dev->wcache = arg;
A
Arnd Bergmann 已提交
689
		ret = 0;
L
Linus Torvalds 已提交
690 691
		break;
	}
692
	mutex_unlock(&i2o_block_mutex);
A
Arnd Bergmann 已提交
693 694

	return ret;
L
Linus Torvalds 已提交
695 696 697
};

/**
698
 *	i2o_block_check_events - Have we seen a media change?
L
Linus Torvalds 已提交
699
 *	@disk: gendisk which should be verified
700
 *	@clearing: events being cleared
L
Linus Torvalds 已提交
701 702 703 704 705
 *
 *	Verifies if the media has changed.
 *
 *	Returns 1 if the media was changed or 0 otherwise.
 */
706 707
static unsigned int i2o_block_check_events(struct gendisk *disk,
					   unsigned int clearing)
L
Linus Torvalds 已提交
708 709 710 711 712
{
	struct i2o_block_device *p = disk->private_data;

	if (p->media_change_flag) {
		p->media_change_flag = 0;
713
		return DISK_EVENT_MEDIA_CHANGE;
L
Linus Torvalds 已提交
714 715 716 717 718 719
	}
	return 0;
}

/**
 *	i2o_block_transfer - Transfer a request to/from the I2O controller
L
Lucas De Marchi 已提交
720
 *	@req: the request which should be transferred
L
Linus Torvalds 已提交
721 722 723 724 725 726 727 728 729 730 731
 *
 *	This function converts the request into a I2O message. The necessary
 *	DMA buffers are allocated and after everything is setup post the message
 *	to the I2O controller. No cleanup is done by this function. It is done
 *	on the interrupt side when the reply arrives.
 *
 *	Return 0 on success or negative error code on failure.
 */
static int i2o_block_transfer(struct request *req)
{
	struct i2o_block_device *dev = req->rq_disk->private_data;
732
	struct i2o_controller *c;
733
	u32 tid;
734 735
	struct i2o_message *msg;
	u32 *mptr;
L
Linus Torvalds 已提交
736 737
	struct i2o_block_request *ireq = req->special;
	u32 tcntxt;
738 739
	u32 sgl_offset = SGL_OFFSET_8;
	u32 ctl_flags = 0x00000000;
L
Linus Torvalds 已提交
740
	int rc;
741 742 743 744 745 746 747 748
	u32 cmd;

	if (unlikely(!dev->i2o_dev)) {
		osm_err("transfer to removed drive\n");
		rc = -ENODEV;
		goto exit;
	}

749
	tid = dev->i2o_dev->lct_data.tid;
750
	c = dev->i2o_dev->iop;
L
Linus Torvalds 已提交
751

752 753 754
	msg = i2o_msg_get(c);
	if (IS_ERR(msg)) {
		rc = PTR_ERR(msg);
L
Linus Torvalds 已提交
755 756 757 758 759 760 761 762 763
		goto exit;
	}

	tcntxt = i2o_cntxt_list_add(c, req);
	if (!tcntxt) {
		rc = -ENOMEM;
		goto nop_msg;
	}

764 765
	msg->u.s.icntxt = cpu_to_le32(i2o_block_driver.context);
	msg->u.s.tcntxt = cpu_to_le32(tcntxt);
L
Linus Torvalds 已提交
766

767
	mptr = &msg->body[0];
L
Linus Torvalds 已提交
768 769

	if (rq_data_dir(req) == READ) {
770 771
		cmd = I2O_CMD_BLOCK_READ << 24;

L
Linus Torvalds 已提交
772 773
		switch (dev->rcache) {
		case CACHE_PREFETCH:
774
			ctl_flags = 0x201F0008;
L
Linus Torvalds 已提交
775
			break;
776

L
Linus Torvalds 已提交
777
		case CACHE_SMARTFETCH:
778
			if (blk_rq_sectors(req) > 16)
779
				ctl_flags = 0x201F0008;
L
Linus Torvalds 已提交
780
			else
781 782 783 784
				ctl_flags = 0x001F0000;
			break;

		default:
L
Linus Torvalds 已提交
785 786 787
			break;
		}
	} else {
788 789
		cmd = I2O_CMD_BLOCK_WRITE << 24;

L
Linus Torvalds 已提交
790 791
		switch (dev->wcache) {
		case CACHE_WRITETHROUGH:
792
			ctl_flags = 0x001F0008;
L
Linus Torvalds 已提交
793 794
			break;
		case CACHE_WRITEBACK:
795
			ctl_flags = 0x001F0010;
L
Linus Torvalds 已提交
796 797
			break;
		case CACHE_SMARTBACK:
798
			if (blk_rq_sectors(req) > 16)
799
				ctl_flags = 0x001F0004;
L
Linus Torvalds 已提交
800
			else
801
				ctl_flags = 0x001F0010;
L
Linus Torvalds 已提交
802 803
			break;
		case CACHE_SMARTTHROUGH:
804
			if (blk_rq_sectors(req) > 16)
805
				ctl_flags = 0x001F0004;
L
Linus Torvalds 已提交
806
			else
807 808 809 810 811 812 813 814 815 816
				ctl_flags = 0x001F0010;
		default:
			break;
		}
	}

#ifdef CONFIG_I2O_EXT_ADAPTEC
	if (c->adaptec) {
		u8 cmd[10];
		u32 scsi_flags;
817
		u16 hwsec;
818

819
		hwsec = queue_logical_block_size(req->q) >> KERNEL_SECTOR_SHIFT;
820 821 822 823
		memset(cmd, 0, 10);

		sgl_offset = SGL_OFFSET_12;

824 825
		msg->u.head[1] =
		    cpu_to_le32(I2O_CMD_PRIVATE << 24 | HOST_TID << 12 | tid);
826

827 828
		*mptr++ = cpu_to_le32(I2O_VENDOR_DPT << 16 | I2O_CMD_SCSI_EXEC);
		*mptr++ = cpu_to_le32(tid);
829 830 831 832 833 834 835

		/*
		 * ENABLE_DISCONNECT
		 * SIMPLE_TAG
		 * RETURN_SENSE_DATA_IN_REPLY_MESSAGE_FRAME
		 */
		if (rq_data_dir(req) == READ) {
M
Markus Lidel 已提交
836
			cmd[0] = READ_10;
837 838
			scsi_flags = 0x60a0000a;
		} else {
M
Markus Lidel 已提交
839
			cmd[0] = WRITE_10;
840
			scsi_flags = 0xa0a0000a;
L
Linus Torvalds 已提交
841
		}
842

843
		*mptr++ = cpu_to_le32(scsi_flags);
844

845 846
		*((u32 *) & cmd[2]) = cpu_to_be32(blk_rq_pos(req) * hwsec);
		*((u16 *) & cmd[7]) = cpu_to_be16(blk_rq_sectors(req) * hwsec);
847

848
		memcpy(mptr, cmd, 10);
849
		mptr += 4;
850
		*mptr++ = cpu_to_le32(blk_rq_bytes(req));
851 852 853
	} else
#endif
	{
854 855
		msg->u.head[1] = cpu_to_le32(cmd | HOST_TID << 12 | tid);
		*mptr++ = cpu_to_le32(ctl_flags);
856
		*mptr++ = cpu_to_le32(blk_rq_bytes(req));
857 858
		*mptr++ =
		    cpu_to_le32((u32) (blk_rq_pos(req) << KERNEL_SECTOR_SHIFT));
859
		*mptr++ =
860
		    cpu_to_le32(blk_rq_pos(req) >> (32 - KERNEL_SECTOR_SHIFT));
L
Linus Torvalds 已提交
861 862
	}

863 864 865
	if (!i2o_block_sglist_alloc(c, ireq, &mptr)) {
		rc = -ENOMEM;
		goto context_remove;
L
Linus Torvalds 已提交
866 867
	}

868 869
	msg->u.head[0] =
	    cpu_to_le32(I2O_MESSAGE_SIZE(mptr - &msg->u.head[0]) | sgl_offset);
L
Linus Torvalds 已提交
870 871 872 873

	list_add_tail(&ireq->queue, &dev->open_queue);
	dev->open_queue_depth++;

874
	i2o_msg_post(c, msg);
L
Linus Torvalds 已提交
875 876 877 878 879 880 881

	return 0;

      context_remove:
	i2o_cntxt_list_remove(c, req);

      nop_msg:
882
	i2o_msg_nop(c, msg);
L
Linus Torvalds 已提交
883 884 885 886 887 888 889

      exit:
	return rc;
};

/**
 *	i2o_block_request_fn - request queue handling function
890
 *	@q: request queue from which the request could be fetched
L
Linus Torvalds 已提交
891 892 893 894 895 896 897 898 899
 *
 *	Takes the next request from the queue, transfers it and if no error
 *	occurs dequeue it from the queue. On arrival of the reply the message
 *	will be processed further. If an error occurs requeue the request.
 */
static void i2o_block_request_fn(struct request_queue *q)
{
	struct request *req;

J
Jens Axboe 已提交
900
	while ((req = blk_peek_request(q)) != NULL) {
901
		if (req->cmd_type == REQ_TYPE_FS) {
L
Linus Torvalds 已提交
902 903 904 905 906 907
			struct i2o_block_delayed_request *dreq;
			struct i2o_block_request *ireq = req->special;
			unsigned int queue_depth;

			queue_depth = ireq->i2o_blk_dev->open_queue_depth;

908
			if (queue_depth < I2O_BLOCK_MAX_OPEN_REQUESTS) {
L
Linus Torvalds 已提交
909
				if (!i2o_block_transfer(req)) {
910
					blk_start_request(req);
L
Linus Torvalds 已提交
911
					continue;
912 913 914
				} else
					osm_info("transfer error\n");
			}
L
Linus Torvalds 已提交
915 916 917 918 919 920 921 922 923 924

			if (queue_depth)
				break;

			/* stop the queue and retry later */
			dreq = kmalloc(sizeof(*dreq), GFP_ATOMIC);
			if (!dreq)
				continue;

			dreq->queue = q;
D
David Howells 已提交
925 926
			INIT_DELAYED_WORK(&dreq->work,
					  i2o_block_delayed_request_fn);
L
Linus Torvalds 已提交
927 928 929 930 931 932 933 934 935

			if (!queue_delayed_work(i2o_block_driver.event_queue,
						&dreq->work,
						I2O_BLOCK_RETRY_TIME))
				kfree(dreq);
			else {
				blk_stop_queue(q);
				break;
			}
936
		} else {
937
			blk_start_request(req);
938 939
			__blk_end_request_all(req, -EIO);
		}
L
Linus Torvalds 已提交
940 941 942 943
	}
};

/* I2O Block device operations definition */
944
static const struct block_device_operations i2o_block_fops = {
L
Linus Torvalds 已提交
945
	.owner = THIS_MODULE,
A
Al Viro 已提交
946 947
	.open = i2o_block_open,
	.release = i2o_block_release,
948
	.ioctl = i2o_block_ioctl,
A
Arnd Bergmann 已提交
949
	.compat_ioctl = i2o_block_ioctl,
950
	.getgeo = i2o_block_getgeo,
951
	.check_events = i2o_block_check_events,
L
Linus Torvalds 已提交
952 953 954 955 956 957 958 959
};

/**
 *	i2o_block_device_alloc - Allocate memory for a I2O Block device
 *
 *	Allocate memory for the i2o_block_device struct, gendisk and request
 *	queue and initialize them as far as no additional information is needed.
 *
960
 *	Returns a pointer to the allocated I2O Block device on success or a
L
Linus Torvalds 已提交
961 962 963 964 965 966 967 968 969
 *	negative error code on failure.
 */
static struct i2o_block_device *i2o_block_device_alloc(void)
{
	struct i2o_block_device *dev;
	struct gendisk *gd;
	struct request_queue *queue;
	int rc;

M
Markus Lidel 已提交
970
	dev = kzalloc(sizeof(*dev), GFP_KERNEL);
L
Linus Torvalds 已提交
971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
	if (!dev) {
		osm_err("Insufficient memory to allocate I2O Block disk.\n");
		rc = -ENOMEM;
		goto exit;
	}

	INIT_LIST_HEAD(&dev->open_queue);
	spin_lock_init(&dev->lock);
	dev->rcache = CACHE_PREFETCH;
	dev->wcache = CACHE_WRITEBACK;

	/* allocate a gendisk with 16 partitions */
	gd = alloc_disk(16);
	if (!gd) {
		osm_err("Insufficient memory to allocate gendisk.\n");
		rc = -ENOMEM;
		goto cleanup_dev;
	}

	/* initialize the request queue */
	queue = blk_init_queue(i2o_block_request_fn, &dev->lock);
	if (!queue) {
		osm_err("Insufficient memory to allocate request queue.\n");
		rc = -ENOMEM;
		goto cleanup_queue;
	}

	blk_queue_prep_rq(queue, i2o_block_prep_req_fn);

	gd->major = I2O_MAJOR;
	gd->queue = queue;
	gd->fops = &i2o_block_fops;
	gd->private_data = dev;

	dev->gd = gd;

	return dev;

      cleanup_queue:
	put_disk(gd);

      cleanup_dev:
	kfree(dev);

      exit:
	return ERR_PTR(rc);
};

/**
 *	i2o_block_probe - verify if dev is a I2O Block device and install it
 *	@dev: device to verify if it is a I2O Block device
 *
 *	We only verify if the user_tid of the device is 0xfff and then install
 *	the device. Otherwise it is used by some other device (e. g. RAID).
 *
 *	Returns 0 on success or negative error code on failure.
 */
static int i2o_block_probe(struct device *dev)
{
	struct i2o_device *i2o_dev = to_i2o_device(dev);
	struct i2o_controller *c = i2o_dev->iop;
1032
	struct i2o_block_device *i2o_blk_dev;
L
Linus Torvalds 已提交
1033 1034 1035 1036 1037 1038
	struct gendisk *gd;
	struct request_queue *queue;
	static int unit = 0;
	int rc;
	u64 size;
	u32 blocksize;
1039
	u16 body_size = 4;
M
Markus Lidel 已提交
1040
	u16 power;
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
	unsigned short max_sectors;

#ifdef CONFIG_I2O_EXT_ADAPTEC
	if (c->adaptec)
		body_size = 8;
#endif

	if (c->limit_sectors)
		max_sectors = I2O_MAX_SECTORS_LIMITED;
	else
		max_sectors = I2O_MAX_SECTORS;
L
Linus Torvalds 已提交
1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084

	/* skip devices which are used by IOP */
	if (i2o_dev->lct_data.user_tid != 0xfff) {
		osm_debug("skipping used device %03x\n", i2o_dev->lct_data.tid);
		return -ENODEV;
	}

	if (i2o_device_claim(i2o_dev)) {
		osm_warn("Unable to claim device. Installation aborted\n");
		rc = -EFAULT;
		goto exit;
	}

	i2o_blk_dev = i2o_block_device_alloc();
	if (IS_ERR(i2o_blk_dev)) {
		osm_err("could not alloc a new I2O block device");
		rc = PTR_ERR(i2o_blk_dev);
		goto claim_release;
	}

	i2o_blk_dev->i2o_dev = i2o_dev;
	dev_set_drvdata(dev, i2o_blk_dev);

	/* setup gendisk */
	gd = i2o_blk_dev->gd;
	gd->first_minor = unit << 4;
	sprintf(gd->disk_name, "i2o/hd%c", 'a' + unit);
	gd->driverfs_dev = &i2o_dev->device;

	/* setup request queue */
	queue = gd->queue;
	queue->queuedata = i2o_blk_dev;

1085
	blk_queue_max_hw_sectors(queue, max_sectors);
1086
	blk_queue_max_segments(queue, i2o_sg_tablesize(c, body_size));
L
Linus Torvalds 已提交
1087

V
Vasily Averin 已提交
1088 1089
	osm_debug("max sectors = %d\n", queue->max_sectors);
	osm_debug("phys segments = %d\n", queue->max_phys_segments);
1090
	osm_debug("max hw segments = %d\n", queue->max_hw_segments);
L
Linus Torvalds 已提交
1091 1092 1093 1094 1095

	/*
	 *      Ask for the current media data. If that isn't supported
	 *      then we ask for the device capacity data
	 */
M
Markus Lidel 已提交
1096 1097
	if (!i2o_parm_field_get(i2o_dev, 0x0004, 1, &blocksize, 4) ||
	    !i2o_parm_field_get(i2o_dev, 0x0000, 3, &blocksize, 4)) {
1098
		blk_queue_logical_block_size(queue, le32_to_cpu(blocksize));
1099 1100
	} else
		osm_warn("unable to get blocksize of %s\n", gd->disk_name);
L
Linus Torvalds 已提交
1101

M
Markus Lidel 已提交
1102 1103 1104
	if (!i2o_parm_field_get(i2o_dev, 0x0004, 0, &size, 8) ||
	    !i2o_parm_field_get(i2o_dev, 0x0000, 4, &size, 8)) {
		set_capacity(gd, le64_to_cpu(size) >> KERNEL_SECTOR_SHIFT);
1105 1106
	} else
		osm_warn("could not get size of %s\n", gd->disk_name);
1107

M
Markus Lidel 已提交
1108 1109
	if (!i2o_parm_field_get(i2o_dev, 0x0000, 2, &power, 2))
		i2o_blk_dev->power = power;
L
Linus Torvalds 已提交
1110 1111 1112 1113 1114 1115 1116

	i2o_event_register(i2o_dev, &i2o_block_driver, 0, 0xffffffff);

	add_disk(gd);

	unit++;

1117 1118 1119
	osm_info("device added (TID: %03x): %s\n", i2o_dev->lct_data.tid,
		 i2o_blk_dev->gd->disk_name);

L
Linus Torvalds 已提交
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158
	return 0;

      claim_release:
	i2o_device_claim_release(i2o_dev);

      exit:
	return rc;
};

/* Block OSM driver struct */
static struct i2o_driver i2o_block_driver = {
	.name = OSM_NAME,
	.event = i2o_block_event,
	.reply = i2o_block_reply,
	.classes = i2o_block_class_id,
	.driver = {
		   .probe = i2o_block_probe,
		   .remove = i2o_block_remove,
		   },
};

/**
 *	i2o_block_init - Block OSM initialization function
 *
 *	Allocate the slab and mempool for request structs, registers i2o_block
 *	block device and finally register the Block OSM in the I2O core.
 *
 *	Returns 0 on success or negative error code on failure.
 */
static int __init i2o_block_init(void)
{
	int rc;
	int size;

	printk(KERN_INFO OSM_DESCRIPTION " v" OSM_VERSION "\n");

	/* Allocate request mempool and slab */
	size = sizeof(struct i2o_block_request);
	i2o_blk_req_pool.slab = kmem_cache_create("i2o_block_req", size, 0,
1159
						  SLAB_HWCACHE_ALIGN, NULL);
L
Linus Torvalds 已提交
1160 1161 1162 1163 1164 1165
	if (!i2o_blk_req_pool.slab) {
		osm_err("can't init request slab\n");
		rc = -ENOMEM;
		goto exit;
	}

1166 1167 1168
	i2o_blk_req_pool.pool =
		mempool_create_slab_pool(I2O_BLOCK_REQ_MEMPOOL_SIZE,
					 i2o_blk_req_pool.slab);
L
Linus Torvalds 已提交
1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232
	if (!i2o_blk_req_pool.pool) {
		osm_err("can't init request mempool\n");
		rc = -ENOMEM;
		goto free_slab;
	}

	/* Register the block device interfaces */
	rc = register_blkdev(I2O_MAJOR, "i2o_block");
	if (rc) {
		osm_err("unable to register block device\n");
		goto free_mempool;
	}
#ifdef MODULE
	osm_info("registered device at major %d\n", I2O_MAJOR);
#endif

	/* Register Block OSM into I2O core */
	rc = i2o_driver_register(&i2o_block_driver);
	if (rc) {
		osm_err("Could not register Block driver\n");
		goto unregister_blkdev;
	}

	return 0;

      unregister_blkdev:
	unregister_blkdev(I2O_MAJOR, "i2o_block");

      free_mempool:
	mempool_destroy(i2o_blk_req_pool.pool);

      free_slab:
	kmem_cache_destroy(i2o_blk_req_pool.slab);

      exit:
	return rc;
};

/**
 *	i2o_block_exit - Block OSM exit function
 *
 *	Unregisters Block OSM from I2O core, unregisters i2o_block block device
 *	and frees the mempool and slab.
 */
static void __exit i2o_block_exit(void)
{
	/* Unregister I2O Block OSM from I2O core */
	i2o_driver_unregister(&i2o_block_driver);

	/* Unregister block device */
	unregister_blkdev(I2O_MAJOR, "i2o_block");

	/* Free request mempool and slab */
	mempool_destroy(i2o_blk_req_pool.pool);
	kmem_cache_destroy(i2o_blk_req_pool.slab);
};

MODULE_AUTHOR("Red Hat");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION(OSM_DESCRIPTION);
MODULE_VERSION(OSM_VERSION);

module_init(i2o_block_init);
module_exit(i2o_block_exit);