X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=kernel%2Fcrypto%2Fahash.c;fp=kernel%2Fcrypto%2Fahash.c;h=dac1c24e9c3e5d0771beeb8bea56e89f1c88efbc;hb=52f993b8e89487ec9ee15a7fb4979e0f09a45b27;hp=d19b52324cf520ee777743ee895efb2f537f5e62;hpb=c189ccac5702322ed843fe17057035b7222a59b6;p=kvmfornfv.git diff --git a/kernel/crypto/ahash.c b/kernel/crypto/ahash.c index d19b52324..dac1c24e9 100644 --- a/kernel/crypto/ahash.c +++ b/kernel/crypto/ahash.c @@ -69,8 +69,9 @@ static int hash_walk_new_entry(struct crypto_hash_walk *walk) struct scatterlist *sg; sg = walk->sg; - walk->pg = sg_page(sg); walk->offset = sg->offset; + walk->pg = sg_page(walk->sg) + (walk->offset >> PAGE_SHIFT); + walk->offset = offset_in_page(walk->offset); walk->entrylen = sg->length; if (walk->entrylen > walk->total)