Procházet zdrojové kódy

[BLOCK] Clear sg entry before filling in blk_rq_map_sg()

The memset() of the sg entry was originally removed, because it could
overwrite a chain pointer. But it's quite OK to memset() it when we know
it's a valid entry, since it can't contain a chain pointer.

Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Jens Axboe před 17 roky
rodič
revize
60573b874b
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  1. 1 0
      block/ll_rw_blk.c

+ 1 - 0
block/ll_rw_blk.c

@@ -1352,6 +1352,7 @@ new_segment:
 			sg = next_sg;
 			next_sg = sg_next(sg);
 
+			memset(sg, 0, sizeof(*sg));
 			sg->page = bvec->bv_page;
 			sg->length = nbytes;
 			sg->offset = bvec->bv_offset;