aboutsummaryrefslogtreecommitdiffstats
path: root/fs/bio.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/bio.c')
-rw-r--r--fs/bio.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/fs/bio.c b/fs/bio.c
index 5f604f269dfa..ac987fc7acd9 100644
--- a/fs/bio.c
+++ b/fs/bio.c
@@ -127,21 +127,9 @@ static void bio_fs_destructor(struct bio *bio)
127 127
128void bio_init(struct bio *bio) 128void bio_init(struct bio *bio)
129{ 129{
130 bio->bi_next = NULL; 130 memset(bio, 0, sizeof(*bio));
131 bio->bi_bdev = NULL;
132 bio->bi_flags = 1 << BIO_UPTODATE; 131 bio->bi_flags = 1 << BIO_UPTODATE;
133 bio->bi_rw = 0;
134 bio->bi_vcnt = 0;
135 bio->bi_idx = 0;
136 bio->bi_phys_segments = 0;
137 bio->bi_hw_segments = 0;
138 bio->bi_hw_front_size = 0;
139 bio->bi_hw_back_size = 0;
140 bio->bi_size = 0;
141 bio->bi_max_vecs = 0;
142 bio->bi_end_io = NULL;
143 atomic_set(&bio->bi_cnt, 1); 132 atomic_set(&bio->bi_cnt, 1);
144 bio->bi_private = NULL;
145} 133}
146 134
147/** 135/**