block: test-iosched infrastructure enhancement

Add functionality to test-iosched so that it could simulate the
ROW scheduler behaviour. The main additions are:
- 3 distinct requests queue with counters
- support for urgent request pending
- reinsert request implementation (callback + dispatch behavior)

Change-Id: I83b5d9e3d2b8cd9a2353afa6a3e6a4cbc83b0cd4
Signed-off-by: Konstantin Dorfman <kdorfman@codeaurora.org>
Signed-off-by: Lee Susman <lsusman@codeaurora.org>
This commit is contained in:
Lee Susman 2012-12-19 14:19:30 +02:00 committed by Stephen Boyd
parent 617114e214
commit edd0f1bf35
3 changed files with 307 additions and 79 deletions

View file

@ -43,18 +43,7 @@ static DEFINE_SPINLOCK(blk_dev_test_list_lock);
static LIST_HEAD(blk_dev_test_list); static LIST_HEAD(blk_dev_test_list);
static struct test_data *ptd; static struct test_data *ptd;
/* Get the request after `test_rq' in the test requests list */
static struct test_request *
latter_test_request(struct request_queue *q,
struct test_request *test_rq)
{
struct test_data *td = q->elevator->elevator_data;
if (test_rq->queuelist.next == &td->test_queue)
return NULL;
return list_entry(test_rq->queuelist.next, struct test_request,
queuelist);
}
/** /**
* test_iosched_get_req_queue() - returns the request queue * test_iosched_get_req_queue() - returns the request queue
@ -77,6 +66,10 @@ void test_iosched_mark_test_completion(void)
{ {
if (!ptd) if (!ptd)
return; return;
test_pr_info("%s: mark test is completed, test_count=%d,",
__func__, ptd->test_count);
test_pr_info("%s: reinsert_count=%d, dispatched_count=%d",
__func__, ptd->reinsert_count, ptd->dispatched_count);
ptd->test_state = TEST_COMPLETED; ptd->test_state = TEST_COMPLETED;
wake_up(&ptd->wait_q); wake_up(&ptd->wait_q);
@ -87,18 +80,32 @@ EXPORT_SYMBOL(test_iosched_mark_test_completion);
static void check_test_completion(void) static void check_test_completion(void)
{ {
struct test_request *test_rq; struct test_request *test_rq;
struct request *rq;
list_for_each_entry(test_rq, &ptd->test_queue, queuelist) { if (!ptd)
rq = test_rq->rq; return;
list_for_each_entry(test_rq, &ptd->dispatched_queue, queuelist)
if (!test_rq->req_completed) if (!test_rq->req_completed)
return; return;
if (!list_empty(&ptd->test_queue)
|| !list_empty(&ptd->reinsert_queue)
|| !list_empty(&ptd->urgent_queue)) {
test_pr_info("%s: Test still not completed,", __func__);
test_pr_info("%s: test_count=%d, reinsert_count=%d",
__func__, ptd->test_count, ptd->reinsert_count);
test_pr_info("%s: dispatched_count=%d, urgent_count=%d",
__func__, ptd->dispatched_count, ptd->urgent_count);
return;
} }
ptd->test_info.test_duration = jiffies - ptd->test_info.test_duration = jiffies -
ptd->test_info.test_duration; ptd->test_info.test_duration;
test_pr_info("%s: Test is completed", __func__); test_pr_info("%s: Test is completed, test_count=%d, reinsert_count=%d,",
__func__, ptd->test_count, ptd->reinsert_count);
test_pr_info("%s: dispatched_count=%d",
__func__, ptd->dispatched_count);
test_iosched_mark_test_completion(); test_iosched_mark_test_completion();
} }
@ -111,7 +118,6 @@ static void end_test_bio(struct bio *bio, int err)
{ {
if (err) if (err)
clear_bit(BIO_UPTODATE, &bio->bi_flags); clear_bit(BIO_UPTODATE, &bio->bi_flags);
bio_put(bio); bio_put(bio);
} }
@ -218,7 +224,10 @@ int test_iosched_add_unique_test_req(int is_err_expcted,
"%s: added request %d to the test requests list, type = %d", "%s: added request %d to the test requests list, type = %d",
__func__, test_rq->req_id, req_unique); __func__, test_rq->req_id, req_unique);
spin_lock_irq(ptd->req_q->queue_lock);
list_add_tail(&test_rq->queuelist, &ptd->test_queue); list_add_tail(&test_rq->queuelist, &ptd->test_queue);
ptd->test_count++;
spin_unlock_irq(ptd->req_q->queue_lock);
return 0; return 0;
} }
@ -250,8 +259,7 @@ static void fill_buf_with_pattern(int *buf, int num_bytes, int pattern)
} }
/** /**
* test_iosched_add_wr_rd_test_req() - Create and queue a * test_iosched_create_test_req() - Create a read/write request.
* read/write request.
* @is_err_expcted: A flag to indicate if this request * @is_err_expcted: A flag to indicate if this request
* should succeed or not * should succeed or not
* @direction: READ/WRITE * @direction: READ/WRITE
@ -275,34 +283,33 @@ static void fill_buf_with_pattern(int *buf, int num_bytes, int pattern)
* request memory is freed at the end of the test and the * request memory is freed at the end of the test and the
* allocated BIO memory is freed by end_test_bio. * allocated BIO memory is freed by end_test_bio.
*/ */
int test_iosched_add_wr_rd_test_req(int is_err_expcted, struct test_request *test_iosched_create_test_req(int is_err_expcted,
int direction, int start_sec, int direction, int start_sec,
int num_bios, int pattern, rq_end_io_fn *end_req_io) int num_bios, int pattern, rq_end_io_fn *end_req_io)
{ {
struct request *rq = NULL; struct request *rq;
struct test_request *test_rq = NULL; struct test_request *test_rq;
int rw_flags = 0; int rw_flags, buf_size;
int buf_size = 0; int ret = 0, i;
int ret = 0, i = 0;
unsigned int *bio_ptr = NULL; unsigned int *bio_ptr = NULL;
struct bio *bio = NULL; struct bio *bio = NULL;
if (!ptd) if (!ptd)
return -ENODEV; return NULL;
rw_flags = direction; rw_flags = direction;
rq = blk_get_request(ptd->req_q, rw_flags, GFP_KERNEL); rq = blk_get_request(ptd->req_q, rw_flags, GFP_KERNEL);
if (!rq) { if (!rq) {
test_pr_err("%s: Failed to allocate a request", __func__); test_pr_err("%s: Failed to allocate a request", __func__);
return -ENODEV; return NULL;
} }
test_rq = kzalloc(sizeof(struct test_request), GFP_KERNEL); test_rq = kzalloc(sizeof(struct test_request), GFP_KERNEL);
if (!test_rq) { if (!test_rq) {
test_pr_err("%s: Failed to allocate test request", __func__); test_pr_err("%s: Failed to allocate test request", __func__);
blk_put_request(rq); blk_put_request(rq);
return -ENODEV; return NULL;
} }
buf_size = sizeof(unsigned int) * BIO_U32_SIZE * num_bios; buf_size = sizeof(unsigned int) * BIO_U32_SIZE * num_bios;
@ -338,6 +345,7 @@ int test_iosched_add_wr_rd_test_req(int is_err_expcted,
rq->end_io = end_test_req; rq->end_io = end_test_req;
rq->__sector = start_sec; rq->__sector = start_sec;
rq->cmd_type |= REQ_TYPE_FS; rq->cmd_type |= REQ_TYPE_FS;
rq->cmd_flags |= REQ_SORTED; /* do we need this?*/
if (rq->bio) { if (rq->bio) {
rq->bio->bi_sector = start_sec; rq->bio->bi_sector = start_sec;
@ -356,16 +364,61 @@ int test_iosched_add_wr_rd_test_req(int is_err_expcted,
test_rq->is_err_expected = is_err_expcted; test_rq->is_err_expected = is_err_expcted;
rq->elv.priv[0] = (void *)test_rq; rq->elv.priv[0] = (void *)test_rq;
test_pr_debug( test_pr_debug("%s: created test request %d, buf_size=%d",
"%s: added request %d to the test requests list, buf_size=%d",
__func__, test_rq->req_id, buf_size); __func__, test_rq->req_id, buf_size);
list_add_tail(&test_rq->queuelist, &ptd->test_queue); return test_rq;
return 0;
err: err:
blk_put_request(rq); blk_put_request(rq);
kfree(test_rq->bios_buffer); kfree(test_rq->bios_buffer);
return NULL;
}
EXPORT_SYMBOL(test_iosched_create_test_req);
/**
* test_iosched_add_wr_rd_test_req() - Create and queue a
* read/write request.
* @is_err_expcted: A flag to indicate if this request
* should succeed or not
* @direction: READ/WRITE
* @start_sec: start address of the first bio
* @num_bios: number of BIOs to be allocated for the
* request
* @pattern: A pattern, to be written into the write
* requests data buffer. In case of READ
* request, the given pattern is kept as
* the expected pattern. The expected
* pattern will be compared in the test
* check result function. If no comparisson
* is required, set pattern to
* TEST_NO_PATTERN.
* @end_req_io: specific completion callback. When not
* set,the default callback will be used
*
* This function allocates the test request and the block
* request and calls blk_rq_map_kern which allocates the
* required BIO. Upon success the new request is added to the
* test_queue. The allocated test request and the block request
* memory is freed at the end of the test and the allocated BIO
* memory is freed by end_test_bio.
*/
int test_iosched_add_wr_rd_test_req(int is_err_expcted,
int direction, int start_sec,
int num_bios, int pattern, rq_end_io_fn *end_req_io)
{
struct test_request *test_rq = NULL;
test_rq = test_iosched_create_test_req(is_err_expcted,
direction, start_sec,
num_bios, pattern, end_req_io);
if (test_rq) {
spin_lock_irq(ptd->req_q->queue_lock);
list_add_tail(&test_rq->queuelist, &ptd->test_queue);
ptd->test_count++;
spin_unlock_irq(ptd->req_q->queue_lock);
return 0;
}
return -ENODEV; return -ENODEV;
} }
EXPORT_SYMBOL(test_iosched_add_wr_rd_test_req); EXPORT_SYMBOL(test_iosched_add_wr_rd_test_req);
@ -428,12 +481,18 @@ static int compare_buffer_to_pattern(struct test_request *test_rq)
static int check_test_result(struct test_data *td) static int check_test_result(struct test_data *td)
{ {
struct test_request *test_rq; struct test_request *test_rq;
struct request *rq;
int res = 0; int res = 0;
static int run; static int run;
list_for_each_entry(test_rq, &ptd->test_queue, queuelist) { if (!ptd)
rq = test_rq->rq; goto err;
list_for_each_entry(test_rq, &ptd->dispatched_queue, queuelist) {
if (!test_rq->rq) {
test_pr_info("%s: req_id %d is contains empty req",
__func__, test_rq->req_id);
continue;
}
if (!test_rq->req_completed) { if (!test_rq->req_completed) {
test_pr_err("%s: rq %d not completed", __func__, test_pr_err("%s: rq %d not completed", __func__,
test_rq->req_id); test_rq->req_id);
@ -506,27 +565,25 @@ static int run_test(struct test_data *td)
return ret; return ret;
} }
/*
* Set the next_req pointer to the first request in the test requests
* list
*/
if (!list_empty(&td->test_queue))
td->next_req = list_entry(td->test_queue.next,
struct test_request, queuelist);
__blk_run_queue(td->req_q); __blk_run_queue(td->req_q);
return 0; return 0;
} }
/* Free the allocated test requests, their requests and BIOs buffer */ /*
static void free_test_requests(struct test_data *td) * free_test_queue() - Free all allocated test requests in the given test_queue:
* free their requests and BIOs buffer
* @test_queue the test queue to be freed
*/
static void free_test_queue(struct list_head *test_queue)
{ {
struct test_request *test_rq; struct test_request *test_rq;
struct bio *bio; struct bio *bio;
while (!list_empty(&td->test_queue)) { while (!list_empty(test_queue)) {
test_rq = list_entry(td->test_queue.next, struct test_request, test_rq = list_entry(test_queue->next, struct test_request,
queuelist); queuelist);
list_del_init(&test_rq->queuelist); list_del_init(&test_rq->queuelist);
/* /*
* If the request was not completed we need to free its BIOs * If the request was not completed we need to free its BIOs
@ -549,8 +606,39 @@ static void free_test_requests(struct test_data *td)
} }
/* /*
* Do post test operations. * free_test_requests() - Free all allocated test requests in
* Free the allocated test requests, their requests and BIOs buffer. * all test queues in given test_data.
* @td The test_data struct whos test requests will be
* freed.
*/
static void free_test_requests(struct test_data *td)
{
if (!td)
return;
if (td->urgent_count) {
free_test_queue(&td->urgent_queue);
td->urgent_count = 0;
}
if (td->test_count) {
free_test_queue(&td->test_queue);
td->test_count = 0;
}
if (td->dispatched_count) {
free_test_queue(&td->dispatched_queue);
td->dispatched_count = 0;
}
if (td->reinsert_count) {
free_test_queue(&td->reinsert_queue);
td->reinsert_count = 0;
}
}
/*
* post_test() - Do post test operations. Free the allocated
* test requests, their requests and BIOs buffer.
* @td The test_data struct for the test that has
* ended.
*/ */
static int post_test(struct test_data *td) static int post_test(struct test_data *td)
{ {
@ -638,7 +726,6 @@ int test_iosched_start_test(struct test_info *t_info)
memcpy(&ptd->test_info, t_info, sizeof(struct test_info)); memcpy(&ptd->test_info, t_info, sizeof(struct test_info));
ptd->next_req = NULL;
ptd->test_result = TEST_NO_RESULT; ptd->test_result = TEST_NO_RESULT;
ptd->num_of_write_bios = 0; ptd->num_of_write_bios = 0;
@ -888,6 +975,45 @@ static void test_merged_requests(struct request_queue *q,
{ {
list_del_init(&next->queuelist); list_del_init(&next->queuelist);
} }
/*
* test_dispatch_from(): Dispatch request from @queue to the @dispatched_queue.
* Also update th dispatched_count counter.
*/
static int test_dispatch_from(struct request_queue *q,
struct list_head *queue, unsigned int *count)
{
struct test_request *test_rq;
struct request *rq;
int ret = 0;
if (!ptd)
goto err;
spin_lock_irq(&ptd->lock);
if (!list_empty(queue)) {
test_rq = list_entry(queue->next, struct test_request,
queuelist);
rq = test_rq->rq;
if (!rq) {
pr_err("%s: null request,return", __func__);
spin_unlock_irq(&ptd->lock);
goto err;
}
list_move_tail(&test_rq->queuelist, &ptd->dispatched_queue);
ptd->dispatched_count++;
(*count)--;
spin_unlock_irq(&ptd->lock);
print_req(rq);
elv_dispatch_sort(q, rq);
ret = 1;
goto err;
}
spin_unlock_irq(&ptd->lock);
err:
return ret;
}
/* /*
* Dispatch a test request in case there is a running test Otherwise, dispatch * Dispatch a test request in case there is a running test Otherwise, dispatch
@ -897,6 +1023,7 @@ static int test_dispatch_requests(struct request_queue *q, int force)
{ {
struct test_data *td = q->elevator->elevator_data; struct test_data *td = q->elevator->elevator_data;
struct request *rq = NULL; struct request *rq = NULL;
int ret = 0;
switch (td->test_state) { switch (td->test_state) {
case TEST_IDLE: case TEST_IDLE:
@ -905,27 +1032,39 @@ static int test_dispatch_requests(struct request_queue *q, int force)
queuelist); queuelist);
list_del_init(&rq->queuelist); list_del_init(&rq->queuelist);
elv_dispatch_sort(q, rq); elv_dispatch_sort(q, rq);
return 1; ret = 1;
goto exit;
} }
break; break;
case TEST_RUNNING: case TEST_RUNNING:
if (td->next_req) { if (test_dispatch_from(q, &td->urgent_queue,
rq = td->next_req->rq; &td->urgent_count)) {
td->next_req = test_pr_debug("%s: Dispatched from urgent_count=%d",
latter_test_request(td->req_q, td->next_req); __func__, ptd->urgent_count);
if (!rq) ret = 1;
return 0; goto exit;
print_req(rq); }
elv_dispatch_sort(q, rq); if (test_dispatch_from(q, &td->reinsert_queue,
return 1; &td->reinsert_count)) {
test_pr_debug("%s: Dispatched from reinsert_count=%d",
__func__, ptd->reinsert_count);
ret = 1;
goto exit;
}
if (test_dispatch_from(q, &td->test_queue, &td->test_count)) {
test_pr_debug("%s: Dispatched from test_count=%d",
__func__, ptd->test_count);
ret = 1;
goto exit;
} }
break; break;
case TEST_COMPLETED: case TEST_COMPLETED:
default: default:
return 0; break;
} }
return 0; exit:
return ret;
} }
static void test_add_request(struct request_queue *q, struct request *rq) static void test_add_request(struct request_queue *q, struct request *rq)
@ -978,6 +1117,9 @@ static int test_init_queue(struct request_queue *q)
memset((void *)ptd, 0, sizeof(struct test_data)); memset((void *)ptd, 0, sizeof(struct test_data));
INIT_LIST_HEAD(&ptd->queue); INIT_LIST_HEAD(&ptd->queue);
INIT_LIST_HEAD(&ptd->test_queue); INIT_LIST_HEAD(&ptd->test_queue);
INIT_LIST_HEAD(&ptd->dispatched_queue);
INIT_LIST_HEAD(&ptd->reinsert_queue);
INIT_LIST_HEAD(&ptd->urgent_queue);
init_waitqueue_head(&ptd->wait_q); init_waitqueue_head(&ptd->wait_q);
ptd->req_q = q; ptd->req_q = q;
@ -1014,7 +1156,79 @@ static void test_exit_queue(struct elevator_queue *e)
kfree(td); kfree(td);
} }
/**
* test_get_test_data() - Returns a pointer to the test_data
* struct which keeps the current test data.
*
*/
struct test_data *test_get_test_data(void)
{
return ptd;
}
EXPORT_SYMBOL(test_get_test_data);
static bool test_urgent_pending(struct request_queue *q)
{
return !list_empty(&ptd->urgent_queue);
}
/**
* test_iosched_add_urgent_req() - Add an urgent test_request.
* First mark the request as urgent, then add it to the
* urgent_queue test queue.
* @test_rq: pointer to the urgent test_request to be
* added.
*
*/
void test_iosched_add_urgent_req(struct test_request *test_rq)
{
spin_lock_irq(&ptd->lock);
blk_mark_rq_urgent(test_rq->rq);
list_add_tail(&test_rq->queuelist, &ptd->urgent_queue);
ptd->urgent_count++;
spin_unlock_irq(&ptd->lock);
}
EXPORT_SYMBOL(test_iosched_add_urgent_req);
/**
* test_reinsert_req() - Moves the @rq request from
* @dispatched_queue into @reinsert_queue.
* The @rq must be in @dispatched_queue
* @q: request queue
* @rq: request to be inserted
*
*
*/
static int test_reinsert_req(struct request_queue *q,
struct request *rq)
{
struct test_request *test_rq;
int ret = -EINVAL;
if (!ptd)
goto exit;
if (list_empty(&ptd->dispatched_queue)) {
test_pr_err("%s: dispatched_queue is empty", __func__);
goto exit;
}
list_for_each_entry(test_rq, &ptd->dispatched_queue, queuelist) {
if (test_rq->rq == rq) {
list_move(&test_rq->queuelist, &ptd->reinsert_queue);
ptd->dispatched_count--;
ptd->reinsert_count++;
ret = 0;
break;
}
}
exit:
return ret;
}
static struct elevator_type elevator_test_iosched = { static struct elevator_type elevator_test_iosched = {
.ops = { .ops = {
.elevator_merge_req_fn = test_merged_requests, .elevator_merge_req_fn = test_merged_requests,
.elevator_dispatch_fn = test_dispatch_requests, .elevator_dispatch_fn = test_dispatch_requests,
@ -1023,6 +1237,8 @@ static struct elevator_type elevator_test_iosched = {
.elevator_latter_req_fn = test_latter_request, .elevator_latter_req_fn = test_latter_request,
.elevator_init_fn = test_init_queue, .elevator_init_fn = test_init_queue,
.elevator_exit_fn = test_exit_queue, .elevator_exit_fn = test_exit_queue,
.elevator_is_urgent_fn = test_urgent_pending,
.elevator_reinsert_req_fn = test_reinsert_req,
}, },
.elevator_name = "test-iosched", .elevator_name = "test-iosched",
.elevator_owner = THIS_MODULE, .elevator_owner = THIS_MODULE,

View file

@ -1811,8 +1811,6 @@ static int run_bkops(struct test_data *td)
break; break;
} }
td->next_req = list_entry(td->test_queue.prev,
struct test_request, queuelist);
__blk_run_queue(q); __blk_run_queue(q);
wait_event(mbtd->bkops_wait_q, wait_event(mbtd->bkops_wait_q,
mbtd->bkops_stage == BKOPS_STAGE_4); mbtd->bkops_stage == BKOPS_STAGE_4);
@ -1842,8 +1840,6 @@ static int run_bkops(struct test_data *td)
break; break;
} }
td->next_req = list_entry(td->test_queue.prev,
struct test_request, queuelist);
__blk_run_queue(q); __blk_run_queue(q);
wait_event(mbtd->bkops_wait_q, wait_event(mbtd->bkops_wait_q,
mbtd->bkops_stage == BKOPS_STAGE_4); mbtd->bkops_stage == BKOPS_STAGE_4);
@ -1873,8 +1869,6 @@ static int run_bkops(struct test_data *td)
break; break;
} }
td->next_req = list_entry(td->test_queue.prev,
struct test_request, queuelist);
__blk_run_queue(q); __blk_run_queue(q);
wait_event(mbtd->bkops_wait_q, wait_event(mbtd->bkops_wait_q,
mbtd->bkops_stage == BKOPS_STAGE_2); mbtd->bkops_stage == BKOPS_STAGE_2);
@ -1892,8 +1886,6 @@ static int run_bkops(struct test_data *td)
break; break;
} }
td->next_req = list_entry(td->test_queue.prev,
struct test_request, queuelist);
__blk_run_queue(q); __blk_run_queue(q);
wait_event(mbtd->bkops_wait_q, wait_event(mbtd->bkops_wait_q,
@ -1933,8 +1925,6 @@ static int run_bkops(struct test_data *td)
break; break;
} }
td->next_req = list_entry(td->test_queue.next,
struct test_request, queuelist);
__blk_run_queue(q); __blk_run_queue(q);
wait_event(mbtd->bkops_wait_q, wait_event(mbtd->bkops_wait_q,
mbtd->bkops_stage == BKOPS_STAGE_2); mbtd->bkops_stage == BKOPS_STAGE_2);
@ -1952,8 +1942,6 @@ static int run_bkops(struct test_data *td)
break; break;
} }
td->next_req = list_entry(td->test_queue.prev,
struct test_request, queuelist);
__blk_run_queue(q); __blk_run_queue(q);
wait_event(mbtd->bkops_wait_q, wait_event(mbtd->bkops_wait_q,

View file

@ -160,8 +160,17 @@ struct blk_dev_test_type {
* struct test_data - global test iosched data * struct test_data - global test iosched data
* @queue: The test IO scheduler requests list * @queue: The test IO scheduler requests list
* @test_queue: The test requests list * @test_queue: The test requests list
* @next_req: Points to the next request to be * @dispatched_queue: The queue contains requests dispatched
* dispatched from the test requests list * from @test_queue
* @reinsert_queue: The queue contains reinserted from underlying
* driver requests
* @urgent_queue: The queue contains requests for urgent delivery
* These requests will be delivered before @test_queue
* and @reinsert_queue requests
* @test_count: Number of requests in the @test_queue
* @dispatched_count: Number of requests in the @dispatched_queue
* @reinsert_count: Number of requests in the @reinsert_queue
* @urgent_count: Number of requests in the @urgent_queue
* @wait_q: A wait queue for waiting for the test * @wait_q: A wait queue for waiting for the test
* requests completion * requests completion
* @test_state: Indicates if there is a running test. * @test_state: Indicates if there is a running test.
@ -194,7 +203,13 @@ struct blk_dev_test_type {
struct test_data { struct test_data {
struct list_head queue; struct list_head queue;
struct list_head test_queue; struct list_head test_queue;
struct test_request *next_req; struct list_head dispatched_queue;
struct list_head reinsert_queue;
struct list_head urgent_queue;
unsigned int test_count;
unsigned int dispatched_count;
unsigned int reinsert_count;
unsigned int urgent_count;
wait_queue_head_t wait_q; wait_queue_head_t wait_q;
enum test_state test_state; enum test_state test_state;
enum test_results test_result; enum test_results test_result;
@ -209,6 +224,7 @@ struct test_data {
struct test_info test_info; struct test_info test_info;
bool fs_wr_reqs_during_test; bool fs_wr_reqs_during_test;
bool ignore_round; bool ignore_round;
bool notified_urgent;
}; };
extern int test_iosched_start_test(struct test_info *t_info); extern int test_iosched_start_test(struct test_info *t_info);
@ -219,6 +235,9 @@ extern int test_iosched_add_unique_test_req(int is_err_expcted,
extern int test_iosched_add_wr_rd_test_req(int is_err_expcted, extern int test_iosched_add_wr_rd_test_req(int is_err_expcted,
int direction, int start_sec, int direction, int start_sec,
int num_bios, int pattern, rq_end_io_fn *end_req_io); int num_bios, int pattern, rq_end_io_fn *end_req_io);
extern struct test_request *test_iosched_create_test_req(int is_err_expcted,
int direction, int start_sec,
int num_bios, int pattern, rq_end_io_fn *end_req_io);
extern struct dentry *test_iosched_get_debugfs_tests_root(void); extern struct dentry *test_iosched_get_debugfs_tests_root(void);
extern struct dentry *test_iosched_get_debugfs_utils_root(void); extern struct dentry *test_iosched_get_debugfs_utils_root(void);
@ -233,4 +252,9 @@ void test_iosched_register(struct blk_dev_test_type *bdt);
void test_iosched_unregister(struct blk_dev_test_type *bdt); void test_iosched_unregister(struct blk_dev_test_type *bdt);
extern struct test_data *test_get_test_data(void);
void test_iosched_add_urgent_req(struct test_request *test_rq);
int test_is_req_urgent(struct request *rq);
#endif /* _LINUX_TEST_IOSCHED_H */ #endif /* _LINUX_TEST_IOSCHED_H */