summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorJens Axboe <axboe@suse.de>2002-06-02 03:15:02 -0700
committerLinus Torvalds <torvalds@home.transmeta.com>2002-06-02 03:15:02 -0700
commit15283e97f91ed67fab57a7df9c268c9fed98cc1f (patch)
tree51f34e3f296b02217798f53ca1e134eb608b0d80 /include/linux
parent6e7c72aaa8f114fc7841407adc5b15f0e4e35ba4 (diff)
[PATCH] documentation and tq_disk removals
This should be the last of tq_disk, at least the trivial ones. md still has some queue_task references, I'll let Ingo/Neil clean those up. suspend is still broken, it was broken before too though. I guess Pavel will want to fix that. Also, I've documented the plug functions.
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/raid/md_k.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/raid/md_k.h b/include/linux/raid/md_k.h
index 62024cab73f2..7b270a50487e 100644
--- a/include/linux/raid/md_k.h
+++ b/include/linux/raid/md_k.h
@@ -355,7 +355,7 @@ do { \
if (condition) \
break; \
spin_unlock_irq(&lock); \
- run_task_queue(&tq_disk); \
+ blk_run_queues(); \
schedule(); \
spin_lock_irq(&lock); \
} \
@@ -381,7 +381,7 @@ do { \
set_current_state(TASK_UNINTERRUPTIBLE); \
if (condition) \
break; \
- run_task_queue(&tq_disk); \
+ blk_run_queues(); \
schedule(); \
} \
current->state = TASK_RUNNING; \