diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2010-02-23 02:55:42 -0500 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2010-02-23 02:55:42 -0500 |
commit | bddd87c7e622ea681c665049027ed84cdcafcb09 (patch) | |
tree | 152e6cd922e629c38398d3acefa929c2e33a7dda /include/linux/sched.h | |
parent | d02f0cff1da4a1bd609e8d3eae3a2e85459cd8a1 (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.h | 4 |
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 { | |||
97 | struct exec_domain; | 97 | struct exec_domain; |
98 | struct futex_pi_state; | 98 | struct futex_pi_state; |
99 | struct robust_list_head; | 99 | struct robust_list_head; |
100 | struct bio; | 100 | struct bio_list; |
101 | struct fs_struct; | 101 | struct fs_struct; |
102 | struct bts_context; | 102 | struct bts_context; |
103 | struct perf_event_context; | 103 | struct 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; |