X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=kernel%2Fcrypto%2Fahash.c;h=dac1c24e9c3e5d0771beeb8bea56e89f1c88efbc;hb=59ee691ba40e67e4975e0eaf768efb6df286ed3c;hp=d19b52324cf520ee777743ee895efb2f537f5e62;hpb=e09b41010ba33a20a87472ee821fa407a5b8da36;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)