summaryrefslogtreecommitdiffstats
path: root/include/linux/sched.h
diff options
context:
space:
mode:
authorAkinobu Mita2010-02-23 08:55:42 +0100
committerJens Axboe2010-02-23 08:55:42 +0100
commitbddd87c7e622ea681c665049027ed84cdcafcb09 (patch)
tree152e6cd922e629c38398d3acefa929c2e33a7dda /include/linux/sched.h
parentcciss: export linux/cciss_defs.h header (diff)
downloadkernel-qcow2-linux-bddd87c7e622ea681c665049027ed84cdcafcb09.tar.gz
kernel-qcow2-linux-bddd87c7e622ea681c665049027ed84cdcafcb09.tar.xz
kernel-qcow2-linux-bddd87c7e622ea681c665049027ed84cdcafcb09.zip
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 {
struct exec_domain;
struct futex_pi_state;
struct robust_list_head;
-struct bio;
+struct bio_list;
struct fs_struct;
struct bts_context;
struct perf_event_context;
@@ -1466,7 +1466,7 @@ struct task_struct {
void *journal_info;
/* stacked block device info */
- struct bio *bio_list, **bio_tail;
+ struct bio_list *bio_list;
/* VM state */
struct reclaim_state *reclaim_state;