aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sched.h
diff options
context:
space:
mode:
authorAkinobu Mita <akinobu.mita@gmail.com>2010-02-23 02:55:42 -0500
committerJens Axboe <jens.axboe@oracle.com>2010-02-23 02:55:42 -0500
commitbddd87c7e622ea681c665049027ed84cdcafcb09 (patch)
tree152e6cd922e629c38398d3acefa929c2e33a7dda /include/linux/sched.h
parentd02f0cff1da4a1bd609e8d3eae3a2e85459cd8a1 (diff)
blk-core: use BIO list management functions
Now that the bio list management stuff is generic, convert generic_make_request to use bio lists instead of its own private bio list implementation. Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com> Cc: Christoph Hellwig <hch@infradead.org> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r--include/linux/sched.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 78efe7c485ac..7eb82975e1ee 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -97,7 +97,7 @@ struct sched_param {
97struct exec_domain; 97struct exec_domain;
98struct futex_pi_state; 98struct futex_pi_state;
99struct robust_list_head; 99struct robust_list_head;
100struct bio; 100struct bio_list;
101struct fs_struct; 101struct fs_struct;
102struct bts_context; 102struct bts_context;
103struct perf_event_context; 103struct perf_event_context;
@@ -1466,7 +1466,7 @@ struct task_struct {
1466 void *journal_info; 1466 void *journal_info;
1467 1467
1468/* stacked block device info */ 1468/* stacked block device info */
1469 struct bio *bio_list, **bio_tail; 1469 struct bio_list *bio_list;
1470 1470
1471/* VM state */ 1471/* VM state */
1472 struct reclaim_state *reclaim_state; 1472 struct reclaim_state *reclaim_state;