summaryrefslogtreecommitdiffstats
path: root/block/blk-integrity.c
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2013-03-20 15:37:08 +1030
committerRusty Russell <rusty@rustcorp.com.au>2013-03-20 15:43:04 +1030
commitc8164d8931fdee9ac5314708c4071adf1d997425 (patch)
treec5d71c82defa52fc3afe7d14e61f44cbb6ff7dc7 /block/blk-integrity.c
parent0d2e1a2926b1839a4b74519e660739b2566c9386 (diff)
downloadlinux-0-day-c8164d8931fdee9ac5314708c4071adf1d997425.tar.gz
linux-0-day-c8164d8931fdee9ac5314708c4071adf1d997425.tar.xz
scatterlist: introduce sg_unmark_end
This is useful in places that recycle the same scatterlist multiple times, and do not want to incur the cost of sg_init_table every time in hot paths. Acked-by: Jens Axboe <axboe@kernel.dk> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'block/blk-integrity.c')
-rw-r--r--block/blk-integrity.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-integrity.c b/block/blk-integrity.c
index dabd221857e1b..03cf7179e8ef1 100644
--- a/block/blk-integrity.c
+++ b/block/blk-integrity.c
@@ -110,7 +110,7 @@ new_segment:
if (!sg)
sg = sglist;
else {
- sg->page_link &= ~0x02;
+ sg_unmark_end(sg);
sg = sg_next(sg);
}