1999-08-29 13:28:55 +00:00
|
|
|
/*
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
|
|
* <phk@FreeBSD.ORG> wrote this file. As long as you retain this notice you
|
|
|
|
* can do whatever you want with this stuff. If we meet some day, and you think
|
|
|
|
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2003-06-11 00:56:59 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2002-03-11 08:08:02 +00:00
|
|
|
#include "opt_geom.h"
|
|
|
|
|
1999-08-29 13:28:55 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
2000-05-05 09:59:14 +00:00
|
|
|
#include <sys/bio.h>
|
1999-08-29 13:28:55 +00:00
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/disk.h>
|
2003-04-01 19:00:38 +00:00
|
|
|
#include <geom/geom_disk.h>
|
2002-09-20 12:52:03 +00:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Disk error is the preface to plaintive error messages
|
|
|
|
* about failing disk transfers. It prints messages of the form
|
|
|
|
* "hp0g: BLABLABLA cmd=read fsbn 12345 of 12344-12347"
|
|
|
|
* blkdone should be -1 if the position of the error is unknown.
|
|
|
|
* The message is printed with printf.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
disk_err(struct bio *bp, const char *what, int blkdone, int nl)
|
|
|
|
{
|
|
|
|
daddr_t sn;
|
|
|
|
|
2003-03-03 11:14:36 +00:00
|
|
|
if (bp->bio_dev != NULL)
|
|
|
|
printf("%s: %s ", devtoname(bp->bio_dev), what);
|
|
|
|
else if (bp->bio_disk != NULL)
|
|
|
|
printf("%s%d: %s ",
|
|
|
|
bp->bio_disk->d_name, bp->bio_disk->d_unit, what);
|
|
|
|
else
|
|
|
|
printf("disk??: %s ", what);
|
2002-09-20 12:52:03 +00:00
|
|
|
switch(bp->bio_cmd) {
|
2002-10-17 23:48:29 +00:00
|
|
|
case BIO_READ: printf("cmd=read "); break;
|
|
|
|
case BIO_WRITE: printf("cmd=write "); break;
|
|
|
|
case BIO_DELETE: printf("cmd=delete "); break;
|
|
|
|
case BIO_GETATTR: printf("cmd=getattr "); break;
|
|
|
|
default: printf("cmd=%x ", bp->bio_cmd); break;
|
2002-09-20 12:52:03 +00:00
|
|
|
}
|
2003-10-18 17:27:10 +00:00
|
|
|
sn = bp->bio_pblkno;
|
2002-09-20 12:52:03 +00:00
|
|
|
if (bp->bio_bcount <= DEV_BSIZE) {
|
|
|
|
printf("fsbn %jd%s", (intmax_t)sn, nl ? "\n" : "");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (blkdone >= 0) {
|
|
|
|
sn += blkdone;
|
|
|
|
printf("fsbn %jd of ", (intmax_t)sn);
|
|
|
|
}
|
2003-10-18 17:27:10 +00:00
|
|
|
printf("%jd-%jd", (intmax_t)bp->bio_pblkno,
|
|
|
|
(intmax_t)(bp->bio_pblkno + (bp->bio_bcount - 1) / DEV_BSIZE));
|
2002-09-20 12:52:03 +00:00
|
|
|
if (nl)
|
|
|
|
printf("\n");
|
|
|
|
}
|
2002-09-20 14:14:37 +00:00
|
|
|
|
2003-03-30 08:51:23 +00:00
|
|
|
/*
|
|
|
|
* BIO queue implementation
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
bioq_init(struct bio_queue_head *head)
|
|
|
|
{
|
|
|
|
TAILQ_INIT(&head->queue);
|
2003-10-18 15:50:56 +00:00
|
|
|
head->last_offset = 0;
|
2003-03-30 08:51:23 +00:00
|
|
|
head->insert_point = NULL;
|
|
|
|
head->switch_point = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
bioq_remove(struct bio_queue_head *head, struct bio *bp)
|
|
|
|
{
|
|
|
|
if (bp == head->switch_point)
|
|
|
|
head->switch_point = TAILQ_NEXT(bp, bio_queue);
|
|
|
|
if (bp == head->insert_point) {
|
|
|
|
head->insert_point = TAILQ_PREV(bp, bio_queue, bio_queue);
|
|
|
|
if (head->insert_point == NULL)
|
2003-10-18 15:50:56 +00:00
|
|
|
head->last_offset = 0;
|
2003-03-30 08:51:23 +00:00
|
|
|
} else if (bp == TAILQ_FIRST(&head->queue))
|
2003-10-18 15:50:56 +00:00
|
|
|
head->last_offset = bp->bio_offset;
|
2003-03-30 08:51:23 +00:00
|
|
|
TAILQ_REMOVE(&head->queue, bp, bio_queue);
|
|
|
|
if (TAILQ_FIRST(&head->queue) == head->switch_point)
|
|
|
|
head->switch_point = NULL;
|
|
|
|
}
|
2003-04-01 12:49:40 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
bioq_flush(struct bio_queue_head *head, struct devstat *stp, int error)
|
|
|
|
{
|
|
|
|
struct bio *bp;
|
|
|
|
|
2004-08-19 19:51:51 +00:00
|
|
|
while ((bp = bioq_takefirst(head)) != NULL)
|
2003-10-14 08:09:43 +00:00
|
|
|
biofinish(bp, stp, error);
|
2003-04-01 12:49:40 +00:00
|
|
|
}
|
|
|
|
|
2003-03-30 08:51:23 +00:00
|
|
|
void
|
|
|
|
bioq_insert_tail(struct bio_queue_head *head, struct bio *bp)
|
|
|
|
{
|
|
|
|
|
|
|
|
TAILQ_INSERT_TAIL(&head->queue, bp, bio_queue);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct bio *
|
|
|
|
bioq_first(struct bio_queue_head *head)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (TAILQ_FIRST(&head->queue));
|
|
|
|
}
|
|
|
|
|
2004-08-19 19:51:51 +00:00
|
|
|
struct bio *
|
|
|
|
bioq_takefirst(struct bio_queue_head *head)
|
|
|
|
{
|
|
|
|
struct bio *bp;
|
|
|
|
|
|
|
|
bp = TAILQ_FIRST(&head->queue);
|
|
|
|
if (bp != NULL)
|
|
|
|
bioq_remove(head, bp);
|
|
|
|
return (bp);
|
|
|
|
}
|
2003-03-30 08:51:23 +00:00
|
|
|
|
2002-09-20 14:14:37 +00:00
|
|
|
/*
|
|
|
|
* Seek sort for disks.
|
|
|
|
*
|
|
|
|
* The buf_queue keep two queues, sorted in ascending block order. The first
|
|
|
|
* queue holds those requests which are positioned after the current block
|
|
|
|
* (in the first request); the second, which starts at queue->switch_point,
|
|
|
|
* holds requests which came in after their block number was passed. Thus
|
|
|
|
* we implement a one way scan, retracting after reaching the end of the drive
|
|
|
|
* to the first request on the second queue, at which time it becomes the
|
|
|
|
* first queue.
|
|
|
|
*
|
|
|
|
* A one-way scan is natural because of the way UNIX read-ahead blocks are
|
|
|
|
* allocated.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
bioq_disksort(bioq, bp)
|
|
|
|
struct bio_queue_head *bioq;
|
|
|
|
struct bio *bp;
|
|
|
|
{
|
|
|
|
struct bio *bq;
|
|
|
|
struct bio *bn;
|
|
|
|
struct bio *be;
|
|
|
|
|
|
|
|
be = TAILQ_LAST(&bioq->queue, bio_queue);
|
|
|
|
/*
|
|
|
|
* If the queue is empty or we are an
|
|
|
|
* ordered transaction, then it's easy.
|
|
|
|
*/
|
|
|
|
if ((bq = bioq_first(bioq)) == NULL) {
|
|
|
|
bioq_insert_tail(bioq, bp);
|
|
|
|
return;
|
|
|
|
} else if (bioq->insert_point != NULL) {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A certain portion of the list is
|
|
|
|
* "locked" to preserve ordering, so
|
|
|
|
* we can only insert after the insert
|
|
|
|
* point.
|
|
|
|
*/
|
|
|
|
bq = bioq->insert_point;
|
|
|
|
} else {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we lie before the last removed (currently active)
|
|
|
|
* request, and are not inserting ourselves into the
|
|
|
|
* "locked" portion of the list, then we must add ourselves
|
|
|
|
* to the second request list.
|
|
|
|
*/
|
2003-10-18 15:50:56 +00:00
|
|
|
if (bp->bio_offset < bioq->last_offset) {
|
2002-09-20 14:14:37 +00:00
|
|
|
|
|
|
|
bq = bioq->switch_point;
|
|
|
|
/*
|
|
|
|
* If we are starting a new secondary list,
|
|
|
|
* then it's easy.
|
|
|
|
*/
|
|
|
|
if (bq == NULL) {
|
|
|
|
bioq->switch_point = bp;
|
|
|
|
bioq_insert_tail(bioq, bp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* If we lie ahead of the current switch point,
|
|
|
|
* insert us before the switch point and move
|
|
|
|
* the switch point.
|
|
|
|
*/
|
2003-10-18 15:50:56 +00:00
|
|
|
if (bp->bio_offset < bq->bio_offset) {
|
2002-09-20 14:14:37 +00:00
|
|
|
bioq->switch_point = bp;
|
|
|
|
TAILQ_INSERT_BEFORE(bq, bp, bio_queue);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (bioq->switch_point != NULL)
|
|
|
|
be = TAILQ_PREV(bioq->switch_point,
|
|
|
|
bio_queue, bio_queue);
|
|
|
|
/*
|
2003-10-18 15:50:56 +00:00
|
|
|
* If we lie between last_offset and bq,
|
2002-09-20 14:14:37 +00:00
|
|
|
* insert before bq.
|
|
|
|
*/
|
2003-10-18 15:50:56 +00:00
|
|
|
if (bp->bio_offset < bq->bio_offset) {
|
2002-09-20 14:14:37 +00:00
|
|
|
TAILQ_INSERT_BEFORE(bq, bp, bio_queue);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Request is at/after our current position in the list.
|
|
|
|
* Optimize for sequential I/O by seeing if we go at the tail.
|
|
|
|
*/
|
2003-10-18 15:50:56 +00:00
|
|
|
if (bp->bio_offset > be->bio_offset) {
|
2002-09-20 14:14:37 +00:00
|
|
|
TAILQ_INSERT_AFTER(&bioq->queue, be, bp, bio_queue);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Otherwise, insertion sort */
|
|
|
|
while ((bn = TAILQ_NEXT(bq, bio_queue)) != NULL) {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We want to go after the current request if it is the end
|
|
|
|
* of the first request list, or if the next request is a
|
|
|
|
* larger cylinder than our request.
|
|
|
|
*/
|
|
|
|
if (bn == bioq->switch_point
|
2003-10-18 15:50:56 +00:00
|
|
|
|| bp->bio_offset < bn->bio_offset)
|
2002-09-20 14:14:37 +00:00
|
|
|
break;
|
|
|
|
bq = bn;
|
|
|
|
}
|
|
|
|
TAILQ_INSERT_AFTER(&bioq->queue, bq, bp, bio_queue);
|
|
|
|
}
|
|
|
|
|
|
|
|
|