]> git.baikalelectronics.ru Git - kernel.git/commit
lib/scatterlist: Fix mapping iterator when sg->offset is greater than PAGE_SIZE
authorChristophe Leroy <christophe.leroy@c-s.fr>
Mon, 24 Jun 2019 07:20:14 +0000 (07:20 +0000)
committerHerbert Xu <herbert@gondor.apana.org.au>
Wed, 3 Jul 2019 14:13:11 +0000 (22:13 +0800)
commit9dded52c2947b603bc1c0c0c38388793a6b52f08
tree9425c5d4b9b8e7f6176b7c705293ef4607498178
parentf76d148257f198c8bf06be45da17f8649e3fdff8
lib/scatterlist: Fix mapping iterator when sg->offset is greater than PAGE_SIZE

All mapping iterator logic is based on the assumption that sg->offset
is always lower than PAGE_SIZE.

But there are situations where sg->offset is such that the SG item
is on the second page. In that case sg_copy_to_buffer() fails
properly copying the data into the buffer. One of the reason is
that the data will be outside the kmapped area used to access that
data.

This patch fixes the issue by adjusting the mapping iterator
offset and pgoffset fields such that offset is always lower than
PAGE_SIZE.

Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Fixes: 6b7fdb48cc33 ("lib/scatterlist: use page iterator in the mapping iterator")
Cc: stable@vger.kernel.org
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
lib/scatterlist.c