scsi_lib.c 37.5 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6 7 8 9
/*
 *  scsi_lib.c Copyright (C) 1999 Eric Youngdale
 *
 *  SCSI queueing library.
 *      Initial versions: Eric Youngdale (eric@andante.org).
 *                        Based upon conversations with large numbers
 *                        of people at Linux Expo.
 */

10
#include <linux/bio.h>
Linus Torvalds's avatar
Linus Torvalds committed
11
#include <linux/blk.h>
Linus Torvalds's avatar
Linus Torvalds committed
12
#include <linux/completion.h>
13
#include <linux/kernel.h>
14
#include <linux/mempool.h>
15
#include <linux/slab.h>
16
#include <linux/init.h>
17
#include <linux/pci.h>
Linus Torvalds's avatar
Linus Torvalds committed
18 19 20

#include "scsi.h"
#include "hosts.h"
21

Linus Torvalds's avatar
Linus Torvalds committed
22

23 24 25 26 27 28 29 30 31 32 33 34 35 36
#define SG_MEMPOOL_NR		5
#define SG_MEMPOOL_SIZE		32

struct scsi_host_sg_pool {
	size_t		size;
	char		*name; 
	kmem_cache_t	*slab;
	mempool_t	*pool;
};

#define SP(x) { x, "sgpool-" #x } 
struct scsi_host_sg_pool scsi_sg_pools[SG_MEMPOOL_NR] = { 
	SP(8), SP(16), SP(32), SP(64), SP(MAX_PHYS_SEGMENTS)
}; 	
Luben Tuikov's avatar
Luben Tuikov committed
37 38
#undef SP

39

Linus Torvalds's avatar
Linus Torvalds committed
40
/*
41
 * Function:    scsi_insert_special_req()
Linus Torvalds's avatar
Linus Torvalds committed
42
 *
43
 * Purpose:     Insert pre-formed request into request queue.
Linus Torvalds's avatar
Linus Torvalds committed
44
 *
45
 * Arguments:   sreq	- request that is ready to be queued.
46
 *              at_head	- boolean.  True if we should insert at head
Linus Torvalds's avatar
Linus Torvalds committed
47 48 49 50 51 52 53 54 55 56 57 58 59
 *                        of queue, false if we should insert at tail.
 *
 * Lock status: Assumed that lock is not held upon entry.
 *
 * Returns:     Nothing
 *
 * Notes:       This function is called from character device and from
 *              ioctl types of functions where the caller knows exactly
 *              what SCSI command needs to be issued.   The idea is that
 *              we merely inject the command into the queue (at the head
 *              for now), and then call the queue request function to actually
 *              process it.
 */
60
int scsi_insert_special_req(struct scsi_request *sreq, int at_head)
Linus Torvalds's avatar
Linus Torvalds committed
61
{
62 63 64 65 66 67 68
	/*
	 * Because users of this function are apt to reuse requests with no
	 * modification, we have to sanitise the request flags here
	 */
	sreq->sr_request->flags &= ~REQ_DONTPREP;
	blk_insert_request(sreq->sr_device->request_queue, sreq->sr_request,
		       	   at_head, sreq);
Linus Torvalds's avatar
Linus Torvalds committed
69 70 71 72
	return 0;
}

/*
73
 * Function:    scsi_queue_insert()
Linus Torvalds's avatar
Linus Torvalds committed
74
 *
75
 * Purpose:     Insert a command in the midlevel queue.
Linus Torvalds's avatar
Linus Torvalds committed
76
 *
77 78
 * Arguments:   cmd    - command that we are adding to queue.
 *              reason - why we are inserting command to queue.
Linus Torvalds's avatar
Linus Torvalds committed
79 80 81
 *
 * Lock status: Assumed that lock is not held upon entry.
 *
82
 * Returns:     Nothing.
Linus Torvalds's avatar
Linus Torvalds committed
83
 *
84 85 86 87 88 89
 * Notes:       We do this for one of two cases.  Either the host is busy
 *              and it cannot accept any more commands for the time being,
 *              or the device returned QUEUE_FULL and can accept no more
 *              commands.
 * Notes:       This could be called either from an interrupt context or a
 *              normal process context.
Linus Torvalds's avatar
Linus Torvalds committed
90
 */
91
int scsi_queue_insert(struct scsi_cmnd *cmd, int reason)
Linus Torvalds's avatar
Linus Torvalds committed
92
{
93 94 95 96 97 98
	struct Scsi_Host *host = cmd->device->host;
	struct scsi_device *device = cmd->device;

	SCSI_LOG_MLQUEUE(1,
		 printk("Inserting command %p into mlqueue\n", cmd));

99
	/*
100 101
	 * We are inserting the command into the ml queue.  First, we
	 * cancel the timer, so it doesn't time out.
102
	 */
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
	scsi_delete_timer(cmd);

	/*
	 * Next, set the appropriate busy bit for the device/host.
	 *
	 * If the host/device isn't busy, assume that something actually
	 * completed, and that we should be able to queue a command now.
	 *
	 * Note that the prior mid-layer assumption that any host could
	 * always queue at least one command is now broken.  The mid-layer
	 * will implement a user specifiable stall (see
	 * scsi_host.max_host_blocked and scsi_device.max_device_blocked)
	 * if a command is requeued with no other commands outstanding
	 * either for the device or for the host.
	 */
	if (reason == SCSI_MLQUEUE_HOST_BUSY)
		host->host_blocked = host->max_host_blocked;
120
	else if (reason == SCSI_MLQUEUE_DEVICE_BUSY)
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
		device->device_blocked = device->max_device_blocked;

	/*
	 * Register the fact that we own the thing for now.
	 */
	cmd->state = SCSI_STATE_MLQUEUE;
	cmd->owner = SCSI_OWNER_MIDLEVEL;

	/*
	 * Decrement the counters, since these commands are no longer
	 * active on the host/device.
	 */
	scsi_host_busy_dec_and_test(host, device);

	/*
	 * Insert this command at the head of the queue for it's device.
	 * It will go before all other commands that are already in the queue.
	 *
	 * NOTE: there is magic here about the way the queue is plugged if
	 * we have no outstanding commands.
	 * 
	 * Although this *doesn't* plug the queue, it does call the request
	 * function.  The SCSI request function detects the blocked condition
	 * and plugs the queue appropriately.
	 */
	blk_insert_request(device->request_queue, cmd->request, 1, cmd);
Linus Torvalds's avatar
Linus Torvalds committed
147 148 149
	return 0;
}

150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
/*
 * Function:    scsi_do_req
 *
 * Purpose:     Queue a SCSI request
 *
 * Arguments:   sreq	  - command descriptor.
 *              cmnd      - actual SCSI command to be performed.
 *              buffer    - data buffer.
 *              bufflen   - size of data buffer.
 *              done      - completion function to be run.
 *              timeout   - how long to let it run before timeout.
 *              retries   - number of retries we allow.
 *
 * Lock status: No locks held upon entry.
 *
 * Returns:     Nothing.
 *
 * Notes:	This function is only used for queueing requests for things
 *		like ioctls and character device requests - this is because
 *		we essentially just inject a request into the queue for the
 *		device.
 */
void scsi_do_req(struct scsi_request *sreq, const void *cmnd,
		 void *buffer, unsigned bufflen,
		 void (*done)(struct scsi_cmnd *),
		 int timeout, int retries)
{
	/*
	 * If the upper level driver is reusing these things, then
	 * we should release the low-level block now.  Another one will
	 * be allocated later when this request is getting queued.
	 */
	if (sreq->sr_command) {
		scsi_put_command(sreq->sr_command);
		sreq->sr_command = NULL;
	}

	/*
	 * Our own function scsi_done (which marks the host as not busy,
	 * disables the timeout counter, etc) will be called by us or by the
	 * scsi_hosts[host].queuecommand() function needs to also call
	 * the completion function for the high level driver.
	 */
	memcpy(sreq->sr_cmnd, cmnd, sizeof(sreq->sr_cmnd));
	sreq->sr_bufflen = bufflen;
	sreq->sr_buffer = buffer;
	sreq->sr_allowed = retries;
	sreq->sr_done = done;
	sreq->sr_timeout_per_command = timeout;

	if (sreq->sr_cmd_len == 0)
		sreq->sr_cmd_len = COMMAND_SIZE(sreq->sr_cmnd[0]);

	/*
	 * At this point, we merely set up the command, stick it in the normal
	 * request queue, and return.  Eventually that request will come to the
	 * top of the list, and will be dispatched.
	 */
	scsi_insert_special_req(sreq, 0);
}
 
static void scsi_wait_done(struct scsi_cmnd *cmd)
{
	struct request *req = cmd->request;
	struct request_queue *q = cmd->device->request_queue;
	unsigned long flags;

	req->rq_status = RQ_SCSI_DONE;	/* Busy, but indicate request done */

	spin_lock_irqsave(q->queue_lock, flags);
	if (blk_rq_tagged(req))
		blk_queue_end_tag(q, req);
	spin_unlock_irqrestore(q->queue_lock, flags);

	if (req->waiting)
		complete(req->waiting);
}

void scsi_wait_req(struct scsi_request *sreq, const void *cmnd, void *buffer,
		   unsigned bufflen, int timeout, int retries)
{
	DECLARE_COMPLETION(wait);
	
	sreq->sr_request->waiting = &wait;
	sreq->sr_request->rq_status = RQ_SCSI_BUSY;
	scsi_do_req(sreq, cmnd, buffer, bufflen, scsi_wait_done,
			timeout, retries);
	generic_unplug_device(sreq->sr_device->request_queue);
	wait_for_completion(&wait);
	sreq->sr_request->waiting = NULL;

	if (sreq->sr_command) {
		scsi_put_command(sreq->sr_command);
		sreq->sr_command = NULL;
	}
}

Linus Torvalds's avatar
Linus Torvalds committed
247 248 249
/*
 * Function:    scsi_init_cmd_errh()
 *
250
 * Purpose:     Initialize cmd fields related to error handling.
Linus Torvalds's avatar
Linus Torvalds committed
251
 *
252
 * Arguments:   cmd	- command that is ready to be queued.
Linus Torvalds's avatar
Linus Torvalds committed
253 254 255 256 257 258 259
 *
 * Returns:     Nothing
 *
 * Notes:       This function has the job of initializing a number of
 *              fields related to error handling.   Typically this will
 *              be called once for each command, as required.
 */
260
static int scsi_init_cmd_errh(struct scsi_cmnd *cmd)
Linus Torvalds's avatar
Linus Torvalds committed
261
{
262 263 264 265 266 267
	cmd->owner = SCSI_OWNER_MIDLEVEL;
	cmd->reset_chain = NULL;
	cmd->serial_number = 0;
	cmd->serial_number_at_timeout = 0;
	cmd->flags = 0;
	cmd->abort_reason = 0;
Linus Torvalds's avatar
Linus Torvalds committed
268

269
	memset(cmd->sense_buffer, 0, sizeof cmd->sense_buffer);
Linus Torvalds's avatar
Linus Torvalds committed
270

271 272
	if (cmd->cmd_len == 0)
		cmd->cmd_len = COMMAND_SIZE(cmd->cmnd[0]);
Linus Torvalds's avatar
Linus Torvalds committed
273 274 275 276 277 278 279 280

	/*
	 * We need saved copies of a number of fields - this is because
	 * error handling may need to overwrite these with different values
	 * to run different commands, and once error handling is complete,
	 * we will need to restore these values prior to running the actual
	 * command.
	 */
281 282 283 284 285 286 287 288 289 290
	cmd->old_use_sg = cmd->use_sg;
	cmd->old_cmd_len = cmd->cmd_len;
	cmd->sc_old_data_direction = cmd->sc_data_direction;
	cmd->old_underflow = cmd->underflow;
	memcpy(cmd->data_cmnd, cmd->cmnd, sizeof(cmd->cmnd));
	cmd->buffer = cmd->request_buffer;
	cmd->bufflen = cmd->request_bufflen;
	cmd->reset_chain = NULL;
	cmd->internal_timeout = NORMAL_TIMEOUT;
	cmd->abort_reason = 0;
Linus Torvalds's avatar
Linus Torvalds committed
291 292 293 294

	return 1;
}

295 296 297 298 299
/*
 * Function:   scsi_setup_cmd_retry()
 *
 * Purpose:    Restore the command state for a retry
 *
300
 * Arguments:  cmd	- command to be restored
301 302 303 304 305 306
 *
 * Returns:    Nothing
 *
 * Notes:      Immediately prior to retrying a command, we need
 *             to restore certain fields that we saved above.
 */
307
void scsi_setup_cmd_retry(struct scsi_cmnd *cmd)
308
{
309 310 311 312 313 314 315
	memcpy(cmd->cmnd, cmd->data_cmnd, sizeof(cmd->data_cmnd));
	cmd->request_buffer = cmd->buffer;
	cmd->request_bufflen = cmd->bufflen;
	cmd->use_sg = cmd->old_use_sg;
	cmd->cmd_len = cmd->old_cmd_len;
	cmd->sc_data_direction = cmd->sc_old_data_direction;
	cmd->underflow = cmd->old_underflow;
316 317
}

Linus Torvalds's avatar
Linus Torvalds committed
318 319 320 321 322
/*
 * Function:    scsi_queue_next_request()
 *
 * Purpose:     Handle post-processing of completed commands.
 *
323
 * Arguments:   cmd	- command that may need to be requeued.
Linus Torvalds's avatar
Linus Torvalds committed
324 325 326 327 328 329 330 331 332
 *
 * Returns:     Nothing
 *
 * Notes:       After command completion, there may be blocks left
 *              over which weren't finished by the previous command
 *              this can be for a number of reasons - the main one is
 *              that a medium error occurred, and the sectors after
 *              the bad block need to be re-read.
 *
333
 *              If cmd is NULL, it means that the previous command
Linus Torvalds's avatar
Linus Torvalds committed
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
 *              was completely finished, and we should simply start
 *              a new command, if possible.
 *
 *		This is where a lot of special case code has begun to
 *		accumulate.  It doesn't really affect readability or
 *		anything, but it might be considered architecturally
 *		inelegant.  If more of these special cases start to
 *		accumulate, I am thinking along the lines of implementing
 *		an atexit() like technology that gets run when commands
 *		complete.  I am not convinced that it is worth the
 *		added overhead, however.  Right now as things stand,
 *		there are simple conditional checks, and most hosts
 *		would skip past.
 *
 *		Another possible solution would be to tailor different
 *		handler functions, sort of like what we did in scsi_merge.c.
 *		This is probably a better solution, but the number of different
 *		permutations grows as 2**N, and if too many more special cases
 *		get added, we start to get screwed.
 */
354
static void scsi_queue_next_request(request_queue_t *q, struct scsi_cmnd *cmd)
Linus Torvalds's avatar
Linus Torvalds committed
355
{
356 357
	struct scsi_device *sdev, *sdev2;
	struct Scsi_Host *shost;
Linus Torvalds's avatar
Linus Torvalds committed
358 359
	unsigned long flags;

Linus Torvalds's avatar
Linus Torvalds committed
360
	ASSERT_LOCK(q->queue_lock, 0);
Linus Torvalds's avatar
Linus Torvalds committed
361

Linus Torvalds's avatar
Linus Torvalds committed
362
	spin_lock_irqsave(q->queue_lock, flags);
363
	if (cmd != NULL) {
Linus Torvalds's avatar
Linus Torvalds committed
364 365 366 367 368 369 370

		/*
		 * For some reason, we are not done with this request.
		 * This happens for I/O errors in the middle of the request,
		 * in which case we need to request the blocks that come after
		 * the bad sector.
		 */
371 372 373 374 375 376
		cmd->request->special = cmd;
		if (blk_rq_tagged(cmd->request))
			blk_queue_end_tag(q, cmd->request);

		/*
		 * set REQ_SPECIAL - we have a command
377 378 379
		 * clear REQ_DONTPREP - we assume the sg table has been 
		 *	nuked so we need to set it up again.
		 */
380 381 382
		cmd->request->flags |= REQ_SPECIAL;
		cmd->request->flags &= ~REQ_DONTPREP;
		__elv_add_request(q, cmd->request, 0, 0);
Linus Torvalds's avatar
Linus Torvalds committed
383 384
	}

385 386
	sdev = q->queuedata;
	shost = sdev->host;
Linus Torvalds's avatar
Linus Torvalds committed
387 388 389 390 391 392 393 394

	/*
	 * If this is a single-lun device, and we are currently finished
	 * with this device, then see if we need to get another device
	 * started.  FIXME(eric) - if this function gets too cluttered
	 * with special case code, then spin off separate versions and
	 * use function pointers to pick the right one.
	 */
395 396 397 398 399
	if (sdev->single_lun && blk_queue_empty(q) && sdev->device_busy ==0 &&
			!shost->host_blocked && !shost->host_self_blocked &&
			!((shost->can_queue > 0) && (shost->host_busy >=
				       		     shost->can_queue))) {
		list_for_each_entry(sdev2, &sdev->same_target_siblings,
400
			       same_target_siblings) {
401 402 403
			if (!sdev2->device_blocked &&
			    !blk_queue_empty(sdev2->request_queue)) {
				__blk_run_queue(sdev2->request_queue);
Linus Torvalds's avatar
Linus Torvalds committed
404 405 406 407 408
				break;
			}
		}
	}

409 410 411 412 413 414 415 416 417 418 419 420 421 422
	while (!list_empty(&shost->starved_list) &&
	       !shost->host_blocked && !shost->host_self_blocked &&
		!((shost->can_queue > 0) &&
		  (shost->host_busy >= shost->can_queue))) {
		/*
		 * As long as shost is accepting commands and we have
		 * starved queues, call __blk_run_queue. scsi_request_fn
		 * drops the queue_lock and can add us back to the
		 * starved_list.
		 */
		sdev2 = list_entry(shost->starved_list.next,
					  struct scsi_device, starved_entry);
		list_del_init(&sdev2->starved_entry);
		__blk_run_queue(sdev2->request_queue);
Linus Torvalds's avatar
Linus Torvalds committed
423
	}
424 425 426

	__blk_run_queue(q);

Linus Torvalds's avatar
Linus Torvalds committed
427
	spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds's avatar
Linus Torvalds committed
428 429 430 431 432 433 434 435
}

/*
 * Function:    scsi_end_request()
 *
 * Purpose:     Post-processing of completed commands called from interrupt
 *              handler or a bottom-half handler.
 *
436
 * Arguments:   cmd	 - command that is complete.
Linus Torvalds's avatar
Linus Torvalds committed
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
 *              uptodate - 1 if I/O indicates success, 0 for I/O error.
 *              sectors  - number of sectors we want to mark.
 *		requeue  - indicates whether we should requeue leftovers.
 *		frequeue - indicates that if we release the command block
 *			   that the queue request function should be called.
 *
 * Lock status: Assumed that lock is not held upon entry.
 *
 * Returns:     Nothing
 *
 * Notes:       This is called for block device requests in order to
 *              mark some number of sectors as complete.
 * 
 *		We are guaranteeing that the request queue will be goosed
 *		at some point during this call.
 */
453 454
static struct scsi_cmnd *scsi_end_request(struct scsi_cmnd *cmd, int uptodate,
					  int sectors, int requeue)
Linus Torvalds's avatar
Linus Torvalds committed
455
{
456 457
	request_queue_t *q = cmd->device->request_queue;
	struct request *req = cmd->request;
458
	unsigned long flags;
Linus Torvalds's avatar
Linus Torvalds committed
459

Linus Torvalds's avatar
Linus Torvalds committed
460
	ASSERT_LOCK(q->queue_lock, 0);
Linus Torvalds's avatar
Linus Torvalds committed
461 462 463 464 465

	/*
	 * If there are blocks left over at the end, set up the command
	 * to queue the remainder of them.
	 */
Linus Torvalds's avatar
Linus Torvalds committed
466
	if (end_that_request_first(req, uptodate, sectors)) {
467 468 469 470 471 472 473 474
		if (requeue) {
			/*
			 * Bleah.  Leftovers again.  Stick the leftovers in
			 * the front of the queue, and goose the queue again.
			 */
			scsi_queue_next_request(q, cmd);
		}
		return cmd;
Linus Torvalds's avatar
Linus Torvalds committed
475
	}
Linus Torvalds's avatar
Linus Torvalds committed
476

477
	add_disk_randomness(req->rq_disk);
Linus Torvalds's avatar
Linus Torvalds committed
478

479 480
	spin_lock_irqsave(q->queue_lock, flags);
	if (blk_rq_tagged(req))
481
		blk_queue_end_tag(q, req);
482 483 484
	end_that_request_last(req);
	spin_unlock_irqrestore(q->queue_lock, flags);

Linus Torvalds's avatar
Linus Torvalds committed
485 486 487 488
	/*
	 * This will goose the queue request function at the end, so we don't
	 * need to worry about launching another command.
	 */
489
	scsi_put_command(cmd);
490
	scsi_queue_next_request(q, NULL);
Linus Torvalds's avatar
Linus Torvalds committed
491 492 493
	return NULL;
}

494
static struct scatterlist *scsi_alloc_sgtable(struct scsi_cmnd *cmd, int gfp_mask)
495 496 497 498
{
	struct scsi_host_sg_pool *sgp;
	struct scatterlist *sgl;

499
	BUG_ON(!cmd->use_sg);
500

501
	switch (cmd->use_sg) {
502
	case 1 ... 8:
503
		cmd->sglist_len = 0;
504 505
		break;
	case 9 ... 16:
506
		cmd->sglist_len = 1;
507 508
		break;
	case 17 ... 32:
509
		cmd->sglist_len = 2;
510 511
		break;
	case 33 ... 64:
512
		cmd->sglist_len = 3;
513 514
		break;
	case 65 ... MAX_PHYS_SEGMENTS:
515
		cmd->sglist_len = 4;
516 517 518 519 520
		break;
	default:
		return NULL;
	}

521
	sgp = scsi_sg_pools + cmd->sglist_len;
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
	sgl = mempool_alloc(sgp->pool, gfp_mask);
	if (sgl)
		memset(sgl, 0, sgp->size);
	return sgl;
}

static void scsi_free_sgtable(struct scatterlist *sgl, int index)
{
	struct scsi_host_sg_pool *sgp;

	BUG_ON(index > SG_MEMPOOL_NR);

	sgp = scsi_sg_pools + index;
	mempool_free(sgl, sgp->pool);
}

Linus Torvalds's avatar
Linus Torvalds committed
538 539 540 541 542
/*
 * Function:    scsi_release_buffers()
 *
 * Purpose:     Completion processing for block device I/O requests.
 *
543
 * Arguments:   cmd	- command that we are bailing.
Linus Torvalds's avatar
Linus Torvalds committed
544 545 546 547 548 549 550 551 552 553 554
 *
 * Lock status: Assumed that no lock is held upon entry.
 *
 * Returns:     Nothing
 *
 * Notes:       In the event that an upper level driver rejects a
 *		command, we must release resources allocated during
 *		the __init_io() function.  Primarily this would involve
 *		the scatter-gather table, and potentially any bounce
 *		buffers.
 */
555
static void scsi_release_buffers(struct scsi_cmnd *cmd)
Linus Torvalds's avatar
Linus Torvalds committed
556
{
557
	struct request *req = cmd->request;
Linus Torvalds's avatar
Linus Torvalds committed
558

559
	ASSERT_LOCK(cmd->device->host->host_lock, 0);
Linus Torvalds's avatar
Linus Torvalds committed
560 561 562 563

	/*
	 * Free up any indirection buffers we allocated for DMA purposes. 
	 */
564 565 566 567
	if (cmd->use_sg)
		scsi_free_sgtable(cmd->request_buffer, cmd->sglist_len);
	else if (cmd->request_buffer != req->buffer)
		kfree(cmd->request_buffer);
Linus Torvalds's avatar
Linus Torvalds committed
568 569 570 571 572

	/*
	 * Zero these out.  They now point to freed memory, and it is
	 * dangerous to hang onto the pointers.
	 */
573 574 575 576
	cmd->buffer  = NULL;
	cmd->bufflen = 0;
	cmd->request_buffer = NULL;
	cmd->request_bufflen = 0;
Linus Torvalds's avatar
Linus Torvalds committed
577 578
}

579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601
/*
 * Function:    scsi_get_request_dev()
 *
 * Purpose:     Find the upper-level driver that is responsible for this
 *              request
 *
 * Arguments:   request   - I/O request we are preparing to queue.
 *
 * Lock status: No locks assumed to be held, but as it happens the
 *              q->queue_lock is held when this is called.
 *
 * Returns:     Nothing
 *
 * Notes:       The requests in the request queue may have originated
 *              from any block device driver.  We need to find out which
 *              one so that we can later form the appropriate command.
 */
static struct Scsi_Device_Template *scsi_get_request_dev(struct request *req)
{
	struct gendisk *p = req->rq_disk;
	return p ? *(struct Scsi_Device_Template **)p->private_data : NULL;
}

Linus Torvalds's avatar
Linus Torvalds committed
602 603 604 605 606
/*
 * Function:    scsi_io_completion()
 *
 * Purpose:     Completion processing for block device I/O requests.
 *
607
 * Arguments:   cmd   - command that is finished.
Linus Torvalds's avatar
Linus Torvalds committed
608 609 610 611 612 613 614 615 616 617 618
 *
 * Lock status: Assumed that no lock is held upon entry.
 *
 * Returns:     Nothing
 *
 * Notes:       This function is matched in terms of capabilities to
 *              the function that created the scatter-gather list.
 *              In other words, if there are no bounce buffers
 *              (the normal case for most drivers), we don't need
 *              the logic to deal with cleaning up afterwards.
 */
619
void scsi_io_completion(struct scsi_cmnd *cmd, int good_sectors,
Linus Torvalds's avatar
Linus Torvalds committed
620 621
			int block_sectors)
{
622 623 624 625
	int result = cmd->result;
	int this_count = cmd->bufflen >> 9;
	request_queue_t *q = cmd->device->request_queue;
	struct request *req = cmd->request;
Douglas Gilbert's avatar
Douglas Gilbert committed
626
	int clear_errors = 1;
Linus Torvalds's avatar
Linus Torvalds committed
627 628 629 630 631 632 633 634

	/*
	 * We must do one of several things here:
	 *
	 *	Call scsi_end_request.  This will finish off the specified
	 *	number of sectors.  If we are done, the command block will
	 *	be released, and the queue function will be goosed.  If we
	 *	are not done, then scsi_end_request will directly goose
Linus Torvalds's avatar
Linus Torvalds committed
635
	 *	the queue.
Linus Torvalds's avatar
Linus Torvalds committed
636 637 638 639 640
	 *
	 *	We can just use scsi_queue_next_request() here.  This
	 *	would be used if we just wanted to retry, for example.
	 *
	 */
Linus Torvalds's avatar
Linus Torvalds committed
641
	ASSERT_LOCK(q->queue_lock, 0);
Linus Torvalds's avatar
Linus Torvalds committed
642 643 644 645 646 647

	/*
	 * Free up any indirection buffers we allocated for DMA purposes. 
	 * For the case of a READ, we need to copy the data out of the
	 * bounce buffer and into the real buffer.
	 */
648 649 650
	if (cmd->use_sg)
		scsi_free_sgtable(cmd->buffer, cmd->sglist_len);
	else if (cmd->buffer != req->buffer) {
651 652 653
		if (rq_data_dir(req) == READ) {
			unsigned long flags;
			char *to = bio_kmap_irq(req->bio, &flags);
654
			memcpy(to, cmd->buffer, cmd->bufflen);
655
			bio_kunmap_irq(to, &flags);
Linus Torvalds's avatar
Linus Torvalds committed
656
		}
657
		kfree(cmd->buffer);
Linus Torvalds's avatar
Linus Torvalds committed
658 659
	}

Douglas Gilbert's avatar
Douglas Gilbert committed
660 661 662
	if (blk_pc_request(req)) { /* SG_IO ioctl from block level */
		req->errors = (driver_byte(result) & DRIVER_SENSE) ?
			      (CHECK_CONDITION << 1) : (result & 0xff);
663
		if (result) {
Douglas Gilbert's avatar
Douglas Gilbert committed
664
			clear_errors = 0;
665 666
			if (cmd->sense_buffer[0] & 0x70) {
				int len = 8 + cmd->sense_buffer[7];
Douglas Gilbert's avatar
Douglas Gilbert committed
667 668 669

				if (len > SCSI_SENSE_BUFFERSIZE)
					len = SCSI_SENSE_BUFFERSIZE;
670
				memcpy(req->sense, cmd->sense_buffer,  len);
Douglas Gilbert's avatar
Douglas Gilbert committed
671 672
				req->sense_len = len;
			}
673 674
		} else
			req->data_len -= cmd->bufflen;
Jens Axboe's avatar
Jens Axboe committed
675 676
	}

Linus Torvalds's avatar
Linus Torvalds committed
677 678 679 680
	/*
	 * Zero these out.  They now point to freed memory, and it is
	 * dangerous to hang onto the pointers.
	 */
681 682 683 684
	cmd->buffer  = NULL;
	cmd->bufflen = 0;
	cmd->request_buffer = NULL;
	cmd->request_bufflen = 0;
Linus Torvalds's avatar
Linus Torvalds committed
685 686 687 688 689

	/*
	 * Next deal with any sectors which we were able to correctly
	 * handle.
	 */
Jens Axboe's avatar
Jens Axboe committed
690
	if (good_sectors >= 0) {
Linus Torvalds's avatar
Linus Torvalds committed
691
		SCSI_LOG_HLCOMPLETE(1, printk("%ld sectors total, %d sectors done.\n",
Linus Torvalds's avatar
Linus Torvalds committed
692
					      req->nr_sectors, good_sectors));
693
		SCSI_LOG_HLCOMPLETE(1, printk("use_sg is %d\n ", cmd->use_sg));
Linus Torvalds's avatar
Linus Torvalds committed
694

Douglas Gilbert's avatar
Douglas Gilbert committed
695 696
		if (clear_errors)
			req->errors = 0;
Linus Torvalds's avatar
Linus Torvalds committed
697 698 699 700 701 702 703 704 705 706 707
		/*
		 * If multiple sectors are requested in one buffer, then
		 * they will have been finished off by the first command.
		 * If not, then we have a multi-buffer command.
		 *
		 * If block_sectors != 0, it means we had a medium error
		 * of some sort, and that we want to mark some number of
		 * sectors as not uptodate.  Thus we want to inhibit
		 * requeueing right here - we will requeue down below
		 * when we handle the bad sectors.
		 */
708
		cmd = scsi_end_request(cmd, 1, good_sectors, result == 0);
Linus Torvalds's avatar
Linus Torvalds committed
709 710 711 712 713

		/*
		 * If the command completed without error, then either finish off the
		 * rest of the command, or start a new one.
		 */
714
		if (result == 0 || cmd == NULL ) {
Linus Torvalds's avatar
Linus Torvalds committed
715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
			return;
		}
	}
	/*
	 * Now, if we were good little boys and girls, Santa left us a request
	 * sense buffer.  We can extract information from this, so we
	 * can choose a block to remap, etc.
	 */
	if (driver_byte(result) != 0) {
		if (suggestion(result) == SUGGEST_REMAP) {
#ifdef REMAP
			/*
			 * Not yet implemented.  A read will fail after being remapped,
			 * a write will call the strategy routine again.
			 */
730
			if (cmd->device->remap) {
Linus Torvalds's avatar
Linus Torvalds committed
731 732 733 734
				result = 0;
			}
#endif
		}
735
		if ((cmd->sense_buffer[0] & 0x7f) == 0x70) {
Linus Torvalds's avatar
Linus Torvalds committed
736 737 738 739
			/*
			 * If the device is in the process of becoming ready,
			 * retry.
			 */
740 741 742
			if (cmd->sense_buffer[12] == 0x04 &&
			    cmd->sense_buffer[13] == 0x01) {
				scsi_queue_next_request(q, cmd);
Linus Torvalds's avatar
Linus Torvalds committed
743 744
				return;
			}
745 746
			if ((cmd->sense_buffer[2] & 0xf) == UNIT_ATTENTION) {
				if (cmd->device->removable) {
Linus Torvalds's avatar
Linus Torvalds committed
747 748 749
					/* detected disc change.  set a bit 
					 * and quietly refuse further access.
		 			 */
750 751
					cmd->device->changed = 1;
					cmd = scsi_end_request(cmd, 0,
752
							this_count, 1);
Linus Torvalds's avatar
Linus Torvalds committed
753 754 755 756 757 758 759 760
					return;
				} else {
					/*
				 	* Must have been a power glitch, or a
				 	* bus reset.  Could not have been a
				 	* media change, so we just retry the
				 	* request and see what happens.  
				 	*/
761
					scsi_queue_next_request(q, cmd);
Linus Torvalds's avatar
Linus Torvalds committed
762 763 764
					return;
				}
			}
Linus Torvalds's avatar
Linus Torvalds committed
765 766 767 768 769 770 771 772
		}
		/* If we had an ILLEGAL REQUEST returned, then we may have
		 * performed an unsupported command.  The only thing this should be
		 * would be a ten byte read where only a six byte read was supported.
		 * Also, on a system where READ CAPACITY failed, we have have read
		 * past the end of the disk.
		 */

773
		switch (cmd->sense_buffer[2]) {
Linus Torvalds's avatar
Linus Torvalds committed
774
		case ILLEGAL_REQUEST:
775 776
			if (cmd->device->ten) {
				cmd->device->ten = 0;
Linus Torvalds's avatar
Linus Torvalds committed
777 778 779 780
				/*
				 * This will cause a retry with a 6-byte
				 * command.
				 */
781
				scsi_queue_next_request(q, cmd);
Linus Torvalds's avatar
Linus Torvalds committed
782 783
				result = 0;
			} else {
784
				cmd = scsi_end_request(cmd, 0, this_count, 1);
Linus Torvalds's avatar
Linus Torvalds committed
785 786 787 788 789
				return;
			}
			break;
		case NOT_READY:
			printk(KERN_INFO "Device %s not ready.\n",
790
			       req->rq_disk ? req->rq_disk->disk_name : "");
791
			cmd = scsi_end_request(cmd, 0, this_count, 1);
Linus Torvalds's avatar
Linus Torvalds committed
792 793 794 795 796
			return;
			break;
		case MEDIUM_ERROR:
		case VOLUME_OVERFLOW:
			printk("scsi%d: ERROR on channel %d, id %d, lun %d, CDB: ",
797 798 799 800 801
			       cmd->device->host->host_no, (int) cmd->device->channel,
			       (int) cmd->device->id, (int) cmd->device->lun);
			print_command(cmd->data_cmnd);
			print_sense("sd", cmd);
			cmd = scsi_end_request(cmd, 0, block_sectors, 1);
Linus Torvalds's avatar
Linus Torvalds committed
802 803 804 805 806
			return;
		default:
			break;
		}
	}			/* driver byte != 0 */
Linus Torvalds's avatar
Linus Torvalds committed
807 808 809 810 811 812
	if (host_byte(result) == DID_RESET) {
		/*
		 * Third party bus reset or reset for error
		 * recovery reasons.  Just retry the request
		 * and see what happens.  
		 */
813
		scsi_queue_next_request(q, cmd);
Linus Torvalds's avatar
Linus Torvalds committed
814 815
		return;
	}
Linus Torvalds's avatar
Linus Torvalds committed
816
	if (result) {
817
		struct Scsi_Device_Template *sdt;
Linus Torvalds's avatar
Linus Torvalds committed
818

819
		sdt = scsi_get_request_dev(cmd->request);
Linus Torvalds's avatar
Linus Torvalds committed
820
		printk("SCSI %s error : host %d channel %d id %d lun %d return code = %x\n",
821 822 823 824 825
		       (sdt ? sdt->name : "device"),
		       cmd->device->host->host_no,
		       cmd->device->channel,
		       cmd->device->id,
		       cmd->device->lun, result);
Linus Torvalds's avatar
Linus Torvalds committed
826 827

		if (driver_byte(result) & DRIVER_SENSE)
828
			print_sense("sd", cmd);
Linus Torvalds's avatar
Linus Torvalds committed
829 830 831 832 833
		/*
		 * Mark a single buffer as not uptodate.  Queue the remainder.
		 * We sometimes get this cruft in the event that a medium error
		 * isn't properly reported.
		 */
834
		cmd = scsi_end_request(cmd, 0, req->current_nr_sectors, 1);
Linus Torvalds's avatar
Linus Torvalds committed
835 836 837 838
		return;
	}
}

839 840 841 842 843
/*
 * Function:    scsi_init_io()
 *
 * Purpose:     SCSI I/O initialize function.
 *
844
 * Arguments:   cmd   - Command descriptor we wish to initialize
845
 *
846 847 848
 * Returns:     0 on success
 *		BLKPREP_DEFER if the failure is retryable
 *		BLKPREP_KILL if the failure is fatal
849
 */
850
static int scsi_init_io(struct scsi_cmnd *cmd)
851
{
852
	struct request     *req = cmd->request;
853
	struct scatterlist *sgpnt;
854
	int		   count;
855 856

	/*
Jens Axboe's avatar
Jens Axboe committed
857
	 * if this is a rq->data based REQ_BLOCK_PC, setup for a non-sg xfer
858 859
	 */
	if ((req->flags & REQ_BLOCK_PC) && !req->bio) {
860 861
		cmd->request_bufflen = req->data_len;
		cmd->request_buffer = req->data;
862
		req->buffer = req->data;
863
		cmd->use_sg = 0;
864
		return 0;
865 866 867 868 869 870 871
	}

	/*
	 * we used to not use scatter-gather for single segment request,
	 * but now we do (it makes highmem I/O easier to support without
	 * kmapping pages)
	 */
872
	cmd->use_sg = req->nr_phys_segments;
873 874 875 876

	/*
	 * if sg table allocation fails, requeue request later.
	 */
877
	sgpnt = scsi_alloc_sgtable(cmd, GFP_ATOMIC);
878 879
	if (unlikely(!sgpnt)) {
		req->flags |= REQ_SPECIAL;
880
		return BLKPREP_DEFER;
881
	}
882

883 884
	cmd->request_buffer = (char *) sgpnt;
	cmd->request_bufflen = req->nr_sectors << 9;
885
	if (blk_pc_request(req))
886
		cmd->request_bufflen = req->data_len;
887 888 889 890 891 892
	req->buffer = NULL;

	/* 
	 * Next, walk the list, and fill in the addresses and sizes of
	 * each segment.
	 */
893
	count = blk_rq_map_sg(req->q, req, cmd->request_buffer);
894 895 896 897

	/*
	 * mapped well, send it off
	 */
898 899
	if (likely(count <= cmd->use_sg)) {
		cmd->use_sg = count;
900 901
		return 0;
	}
902 903

	printk(KERN_ERR "Incorrect number of segments after building list\n");
904
	printk(KERN_ERR "counted %d, received %d\n", count, cmd->use_sg);
905 906 907
	printk(KERN_ERR "req nr_sec %lu, cur_nr_sec %u\n", req->nr_sectors,
			req->current_nr_sectors);

908
	/* release the command and kill it */
909 910
	scsi_put_command(cmd);
	return BLKPREP_KILL;
911 912
}

913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928
/*
 * The target associated with myself can only handle one active command at
 * a time. Scan through all of the luns on the same target as myself,
 * return 1 if any are active.
 */
static int check_all_luns(struct scsi_device *myself)
{
	struct scsi_device *sdev;

	list_for_each_entry(sdev, &myself->same_target_siblings,
			    same_target_siblings)
		if (sdev->device_busy)
			return 1;
	return 0;
}

929
static int scsi_prep_fn(struct request_queue *q, struct request *req)
930
{
931 932 933
	struct Scsi_Device_Template *sdt;
	struct scsi_device *sdev = q->queuedata;
	struct scsi_cmnd *cmd;
934 935 936 937 938

	/*
	 * Find the actual device driver associated with this command.
	 * The SPECIAL requests are things like character device or
	 * ioctls, which did not originate from ll_rw_blk.  Note that
939
	 * the special field is also used to indicate the cmd for
940 941 942 943 944 945
	 * the remainder of a partially fulfilled request that can 
	 * come up when there is a medium error.  We have to treat
	 * these two cases differently.  We differentiate by looking
	 * at request->cmd, as this tells us the real story.
	 */
	if (req->flags & REQ_SPECIAL) {
946
		struct scsi_request *sreq = req->special;
947

948 949 950
		if (sreq->sr_magic == SCSI_REQ_MAGIC) {
			cmd = scsi_get_command(sreq->sr_device, GFP_ATOMIC);
			if (unlikely(!cmd))
951
				return BLKPREP_DEFER;
952 953 954
			scsi_init_cmd_from_req(cmd, sreq);
		} else
			cmd = req->special;
955 956 957 958
	} else if (req->flags & (REQ_CMD | REQ_BLOCK_PC)) {
		/*
		 * Now try and find a command block that we can use.
		 */
959
		if (!req->special) {
960 961
			cmd = scsi_get_command(sdev, GFP_ATOMIC);
			if (unlikely(!cmd))
962 963
				return BLKPREP_DEFER;
		} else
964
			cmd = req->special;
965 966
		
		/* pull a tag out of the request if we have one */
967
		cmd->tag = req->tag;
968 969 970 971 972 973
	} else {
		blk_dump_rq_flags(req, "SCSI bad req");
		return BLKPREP_KILL;
	}
	
	/* note the overloading of req->special.  When the tag
974
	 * is active it always means cmd.  If the tag goes
975
	 * back for re-queueing, it may be reset */
976 977
	req->special = cmd;
	cmd->request = req;
978 979 980 981 982 983 984 985 986
	
	/*
	 * FIXME: drop the lock here because the functions below
	 * expect to be called without the queue lock held.  Also,
	 * previously, we dequeued the request before dropping the
	 * lock.  We hope REQ_STARTED prevents anything untoward from
	 * happening now.
	 */
	if (req->flags & (REQ_CMD | REQ_BLOCK_PC)) {
987 988
		int ret;

989 990 991 992 993 994 995 996 997 998 999 1000
		/*
		 * This will do a couple of things:
		 *  1) Fill in the actual SCSI command.
		 *  2) Fill in any other upper-level specific fields
		 * (timeout).
		 *
		 * If this returns 0, it means that the request failed
		 * (reading past end of disk, reading offline device,
		 * etc).   This won't actually talk to the device, but
		 * some kinds of consistency checking may cause the	
		 * request to be rejected immediately.
		 */
1001 1002
		sdt = scsi_get_request_dev(req);
		BUG_ON(!sdt);
1003 1004 1005 1006 1007

		/* 
		 * This sets up the scatter-gather table (allocating if
		 * required).
		 */
1008 1009
		ret = scsi_init_io(cmd);
		if (ret)	/* BLKPREP_KILL return also releases the command */
1010
			return ret;
1011 1012 1013 1014
		
		/*
		 * Initialize the actual SCSI command for this request.
		 */
1015 1016 1017
		if (unlikely(!sdt->init_command(cmd))) {
			scsi_release_buffers(cmd);
			scsi_put_command(cmd);
1018 1019 1020
			return BLKPREP_KILL;
		}
	}
1021 1022 1023 1024

	/*
	 * The request is now prepped, no need to come back here
	 */
1025 1026 1027 1028
	req->flags |= REQ_DONTPREP;
	return BLKPREP_OK;
}

Linus Torvalds's avatar
Linus Torvalds committed
1029 1030 1031
/*
 * Function:    scsi_request_fn()
 *
1032
 * Purpose:     Main strategy routine for SCSI.
Linus Torvalds's avatar
Linus Torvalds committed
1033 1034 1035 1036 1037 1038 1039
 *
 * Arguments:   q       - Pointer to actual queue.
 *
 * Returns:     Nothing
 *
 * Lock status: IO request lock assumed to be held when called.
 */
1040
static void scsi_request_fn(request_queue_t *q)
Linus Torvalds's avatar
Linus Torvalds committed
1041
{
1042 1043 1044
	struct scsi_device *sdev = q->queuedata;
	struct Scsi_Host *shost = sdev->host;
	struct scsi_cmnd *cmd;
Linus Torvalds's avatar
Linus Torvalds committed
1045 1046
	struct request *req;

Linus Torvalds's avatar
Linus Torvalds committed
1047
	ASSERT_LOCK(q->queue_lock, 1);
Linus Torvalds's avatar
Linus Torvalds committed
1048 1049 1050 1051 1052

	/*
	 * To start with, we keep looping until the queue is empty, or until
	 * the host is no longer able to accept any more requests.
	 */
1053
	for (;;) {
Linus Torvalds's avatar
Linus Torvalds committed
1054 1055 1056 1057 1058
		/*
		 * Check this again - each time we loop through we will have
		 * released the lock and grabbed it again, so each time
		 * we need to check to see if the queue is plugged or not.
		 */
1059
		if (shost->in_recovery || blk_queue_plugged(q))
Linus Torvalds's avatar
Linus Torvalds committed
1060 1061
			return;

1062 1063 1064 1065 1066 1067 1068 1069
		/*
		 * get next queueable request.  We do this early to make sure
		 * that the request is fully prepared even if we cannot 
		 * accept it.  If there is no request, we'll detect this
		 * lower down.
		 */
		req = elv_next_request(q);

1070
		if (sdev->device_busy >= sdev->queue_depth)
1071 1072
			break;

1073
		if (sdev->single_lun && check_all_luns(sdev))
1074 1075
			break;

1076
		if (shost->host_busy == 0 && shost->host_blocked) {
1077
			/* unblock after host_blocked iterates to zero */
1078 1079 1080 1081
			if (--shost->host_blocked == 0) {
				SCSI_LOG_MLQUEUE(3,
					printk("scsi%d unblocking host at zero depth\n",
						shost->host_no));
1082 1083 1084 1085 1086
			} else {
				blk_plug_device(q);
				break;
			}
		}
1087 1088

		if (sdev->device_busy == 0 && sdev->device_blocked) {
1089
			/* unblock after device_blocked iterates to zero */
1090 1091 1092 1093
			if (--sdev->device_blocked == 0) {
				SCSI_LOG_MLQUEUE(3,
					printk("scsi%d (%d:%d) unblocking device at zero depth\n",
						shost->host_no, sdev->id, sdev->lun));
1094 1095 1096 1097 1098
			} else {
				blk_plug_device(q);
				break;
			}
		}
1099

Linus Torvalds's avatar
Linus Torvalds committed
1100 1101 1102
		/*
		 * If the device cannot accept another request, then quit.
		 */
1103
		if (sdev->device_blocked)
Linus Torvalds's avatar
Linus Torvalds committed
1104
			break;
1105 1106 1107 1108

		if (!list_empty(&sdev->starved_entry))
			break;

1109 1110
		if ((shost->can_queue > 0 && shost->host_busy >= shost->can_queue) ||
		    shost->host_blocked || shost->host_self_blocked) {
1111 1112
			list_add_tail(&sdev->starved_entry,
				      &shost->starved_list);
Linus Torvalds's avatar
Linus Torvalds committed
1113
			break;
1114
		}
Linus Torvalds's avatar
Linus Torvalds committed
1115 1116 1117 1118 1119

		/*
		 * If we couldn't find a request that could be queued, then we
		 * can also quit.
		 */
Linus Torvalds's avatar
Linus Torvalds committed
1120
		if (blk_queue_empty(q))
Linus Torvalds's avatar
Linus Torvalds committed
1121 1122
			break;

1123
		if (!req) {
1124 1125 1126
			/* If the device is busy, a returning I/O
			 * will restart the queue.  Otherwise, we have
			 * to plug the queue */
1127
			if(sdev->device_busy == 0)
1128
				blk_plug_device(q);
Linus Torvalds's avatar
Linus Torvalds committed
1129
			break;
Linus Torvalds's avatar
Linus Torvalds committed
1130 1131
		}

1132
		cmd = req->special;
1133

1134 1135
		/*
		 * Should be impossible for a correctly prepared request
1136
		 * please mail the stack trace to linux-scsi@vger.kernel.org
Linus Torvalds's avatar
Linus Torvalds committed
1137
		 */
1138
		BUG_ON(!cmd);
Linus Torvalds's avatar
Linus Torvalds committed
1139 1140 1141 1142

		/*
		 * Finally, before we release the lock, we copy the
		 * request to the command block, and remove the
1143
		 * request from the request list.  Note that we always
Linus Torvalds's avatar
Linus Torvalds committed
1144
		 * operate on the queue head - there is absolutely no
1145 1146
		 * reason to search the list, because all of the
		 * commands in this queue are for the same device.
Linus Torvalds's avatar
Linus Torvalds committed
1147
		 */
1148
		if (!(blk_queue_tagged(q) && (blk_queue_start_tag(q, req) == 0)))
1149
			blkdev_dequeue_request(req);
1150
	
Linus Torvalds's avatar
Linus Torvalds committed
1151
		/*
1152 1153
		 * Now bump the usage count for both the host and the
		 * device.
Linus Torvalds's avatar
Linus Torvalds committed
1154
		 */
1155 1156
		shost->host_busy++;
		sdev->device_busy++;
Linus Torvalds's avatar
Linus Torvalds committed
1157
		spin_unlock_irq(q->queue_lock);
Linus Torvalds's avatar
Linus Torvalds committed
1158 1159 1160 1161 1162

		/*
		 * Finally, initialize any error handling parameters, and set up
		 * the timers for timeouts.
		 */
1163
		scsi_init_cmd_errh(cmd);
Linus Torvalds's avatar
Linus Torvalds committed
1164 1165 1166 1167

		/*
		 * Dispatch the command to the low-level driver.
		 */
1168
		scsi_dispatch_cmd(cmd);
Linus Torvalds's avatar
Linus Torvalds committed
1169 1170

		/*
Linus Torvalds's avatar
Linus Torvalds committed
1171 1172
		 * Now we need to grab the lock again.  We are about to mess
		 * with the request queue and try to find another command.
Linus Torvalds's avatar
Linus Torvalds committed
1173
		 */
Linus Torvalds's avatar
Linus Torvalds committed
1174
		spin_lock_irq(q->queue_lock);
Linus Torvalds's avatar
Linus Torvalds committed
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 1233
u64 scsi_calculate_bounce_limit(struct Scsi_Host *shost)
{
	if (shost->highmem_io) {
		struct device *host_dev = scsi_get_device(shost);

		if (PCI_DMA_BUS_IS_PHYS && host_dev && host_dev->dma_mask)
			return *host_dev->dma_mask;

		/*
		 * Platforms with virtual-DMA translation
 		 * hardware have no practical limit.
		 */
		return BLK_BOUNCE_ANY;
	} else if (shost->unchecked_isa_dma)
		return BLK_BOUNCE_ISA;

	return BLK_BOUNCE_HIGH;
}

request_queue_t *scsi_alloc_queue(struct Scsi_Host *shost)
{
	request_queue_t *q;

	q = kmalloc(sizeof(*q), GFP_ATOMIC);
	if (!q)
		return NULL;
	memset(q, 0, sizeof(*q));

	if (!shost->max_sectors) {
		/*
		 * Driver imposes no hard sector transfer limit.
		 * start at machine infinity initially.
		 */
		shost->max_sectors = SCSI_DEFAULT_MAX_SECTORS;
	}

	blk_init_queue(q, scsi_request_fn, shost->host_lock);
	blk_queue_prep_rq(q, scsi_prep_fn);

	blk_queue_max_hw_segments(q, shost->sg_tablesize);
	blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
	blk_queue_max_sectors(q, shost->max_sectors);
	blk_queue_bounce_limit(q, scsi_calculate_bounce_limit(shost));

	if (!shost->use_clustering)
		clear_bit(QUEUE_FLAG_CLUSTER, &q->queue_flags);

	return q;
}

void scsi_free_queue(request_queue_t *q)
{
	blk_cleanup_queue(q);
	kfree(q);
}

Linus Torvalds's avatar
Linus Torvalds committed
1234 1235 1236 1237 1238 1239
/*
 * Function:    scsi_block_requests()
 *
 * Purpose:     Utility function used by low-level drivers to prevent further
 *		commands from being queued to the device.
 *
1240
 * Arguments:   shost       - Host in question
Linus Torvalds's avatar
Linus Torvalds committed
1241 1242 1243 1244 1245 1246 1247 1248 1249
 *
 * Returns:     Nothing
 *
 * Lock status: No locks are assumed held.
 *
 * Notes:       There is no timer nor any other means by which the requests
 *		get unblocked other than the low-level driver calling
 *		scsi_unblock_requests().
 */
1250
void scsi_block_requests(struct Scsi_Host *shost)
Linus Torvalds's avatar
Linus Torvalds committed
1251
{
1252
	shost->host_self_blocked = 1;
Linus Torvalds's avatar
Linus Torvalds committed
1253 1254 1255 1256 1257 1258 1259 1260
}

/*
 * Function:    scsi_unblock_requests()
 *
 * Purpose:     Utility function used by low-level drivers to allow further
 *		commands from being queued to the device.
 *
1261
 * Arguments:   shost       - Host in question
Linus Torvalds's avatar
Linus Torvalds committed
1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274
 *
 * Returns:     Nothing
 *
 * Lock status: No locks are assumed held.
 *
 * Notes:       There is no timer nor any other means by which the requests
 *		get unblocked other than the low-level driver calling
 *		scsi_unblock_requests().
 *
 *		This is done as an API function so that changes to the
 *		internals of the scsi mid-layer won't require wholesale
 *		changes to drivers that use this feature.
 */
1275
void scsi_unblock_requests(struct Scsi_Host *shost)
Linus Torvalds's avatar
Linus Torvalds committed
1276
{
1277
	struct scsi_device *sdev;
Linus Torvalds's avatar
Linus Torvalds committed
1278

1279 1280 1281 1282 1283 1284 1285
	shost->host_self_blocked = 0;

	/*
	 * Now that we are unblocked, try to start the queues.
	 */
	list_for_each_entry(sdev, &shost->my_devices, siblings)
		scsi_queue_next_request(sdev->request_queue, NULL);
Linus Torvalds's avatar
Linus Torvalds committed
1286 1287 1288 1289 1290 1291 1292 1293
}

/*
 * Function:    scsi_report_bus_reset()
 *
 * Purpose:     Utility function used by low-level drivers to report that
 *		they have observed a bus reset on the bus being handled.
 *
1294
 * Arguments:   shost       - Host in question
Linus Torvalds's avatar
Linus Torvalds committed
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
 *		channel     - channel on which reset was observed.
 *
 * Returns:     Nothing
 *
 * Lock status: No locks are assumed held.
 *
 * Notes:       This only needs to be called if the reset is one which
 *		originates from an unknown location.  Resets originated
 *		by the mid-level itself don't need to call this, but there
 *		should be no harm.
 *
 *		The main purpose of this is to make sure that a CHECK_CONDITION
 *		is properly treated.
 */
1309
void scsi_report_bus_reset(struct Scsi_Host *shost, int channel)
Linus Torvalds's avatar
Linus Torvalds committed
1310
{
1311 1312 1313 1314 1315 1316
	struct scsi_device *sdev;

	list_for_each_entry(sdev, &shost->my_devices, siblings) {
		if (channel == sdev->channel) {
			sdev->was_reset = 1;
			sdev->expecting_cc_ua = 1;
Linus Torvalds's avatar
Linus Torvalds committed
1317 1318 1319 1320
		}
	}
}

1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347
int __init scsi_init_queue(void)
{
	int i;

	for (i = 0; i < SG_MEMPOOL_NR; i++) {
		struct scsi_host_sg_pool *sgp = scsi_sg_pools + i;
		int size = sgp->size * sizeof(struct scatterlist);

		sgp->slab = kmem_cache_create(sgp->name, size, 0,
				SLAB_HWCACHE_ALIGN, NULL, NULL);
		if (!sgp->slab) {
			printk(KERN_ERR "SCSI: can't init sg slab %s\n",
					sgp->name);
		}

		sgp->pool = mempool_create(SG_MEMPOOL_SIZE,
				mempool_alloc_slab, mempool_free_slab,
				sgp->slab);
		if (!sgp->pool) {
			printk(KERN_ERR "SCSI: can't init sg mempool %s\n",
					sgp->name);
		}
	}

	return 0;
}

1348
void scsi_exit_queue(void)
1349 1350 1351 1352 1353 1354 1355 1356 1357
{
	int i;

	for (i = 0; i < SG_MEMPOOL_NR; i++) {
		struct scsi_host_sg_pool *sgp = scsi_sg_pools + i;
		mempool_destroy(sgp->pool);
		kmem_cache_destroy(sgp->slab);
	}
}