patch-2.3.46 linux/include/linux/blk.h
Next file: linux/include/linux/blkdev.h
Previous file: linux/include/linux/ax25.h
Back to the patch index
Back to the overall index
- Lines: 49
- Date:
Wed Feb 16 12:56:33 2000
- Orig file:
v2.3.45/linux/include/linux/blk.h
- Orig date:
Fri Jan 7 19:13:23 2000
diff -u --recursive --new-file v2.3.45/linux/include/linux/blk.h linux/include/linux/blk.h
@@ -96,6 +96,18 @@
* code duplication in drivers.
*/
+extern inline void blkdev_dequeue_request(struct request * req)
+{
+ if (req->q)
+ {
+ if (req->cmd == READ)
+ req->q->elevator.read_pendings--;
+ req->q->nr_segments -= req->nr_segments;
+ req->q = NULL;
+ }
+ list_del(&req->queue);
+}
+
int end_that_request_first(struct request *req, int uptodate, char *name);
void end_that_request_last(struct request *req);
@@ -373,7 +385,10 @@
#if !defined(IDE_DRIVER)
#ifndef CURRENT
-#define CURRENT (blk_dev[MAJOR_NR].request_queue.current_request)
+#define CURRENT blkdev_entry_next_request(&blk_dev[MAJOR_NR].request_queue.queue_head)
+#endif
+#ifndef QUEUE_EMPTY
+#define QUEUE_EMPTY list_empty(&blk_dev[MAJOR_NR].request_queue.queue_head)
#endif
#ifndef DEVICE_NAME
@@ -418,7 +433,7 @@
#endif
#define INIT_REQUEST \
- if (!CURRENT) {\
+ if (QUEUE_EMPTY) {\
CLEAR_INTR; \
return; \
} \
@@ -446,7 +461,7 @@
add_blkdev_randomness(MAJOR(req->rq_dev));
#endif
DEVICE_OFF(req->rq_dev);
- CURRENT = req->next;
+ blkdev_dequeue_request(req);
end_that_request_last(req);
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)