summaryrefslogtreecommitdiffstats
path: root/fs/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/buffer.c')
-rw-r--r--fs/buffer.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/buffer.c b/fs/buffer.c
index 52d024bfdbc1..817871274c77 100644
--- a/fs/buffer.c
+++ b/fs/buffer.c
@@ -3032,7 +3032,10 @@ void guard_bio_eod(int op, struct bio *bio)
3032 3032
3033 /* ..and clear the end of the buffer for reads */ 3033 /* ..and clear the end of the buffer for reads */
3034 if (op == REQ_OP_READ) { 3034 if (op == REQ_OP_READ) {
3035 zero_user(bvec->bv_page, bvec->bv_offset + bvec->bv_len, 3035 struct bio_vec bv;
3036
3037 mp_bvec_last_segment(bvec, &bv);
3038 zero_user(bv.bv_page, bv.bv_offset + bv.bv_len,
3036 truncated_bytes); 3039 truncated_bytes);
3037 } 3040 }
3038} 3041}