X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=crypto%2Fscatterwalk.c;h=bc769c448d4a9829c0733ca3adbd1dc04bd5afec;hb=08bb036c9d82ec70fd88c7e08345373a97f98637;hp=ea5815c5e12817912e1749d6aaf1a84606d7e7f3;hpb=af0b3152bbfebd3f8291fd61988c12ece4f60f57;p=firefly-linux-kernel-4.4.55.git diff --git a/crypto/scatterwalk.c b/crypto/scatterwalk.c index ea5815c5e128..bc769c448d4a 100644 --- a/crypto/scatterwalk.c +++ b/crypto/scatterwalk.c @@ -72,7 +72,8 @@ static void scatterwalk_pagedone(struct scatter_walk *walk, int out, void scatterwalk_done(struct scatter_walk *walk, int out, int more) { - if (!(scatterwalk_pagelen(walk) & (PAGE_SIZE - 1)) || !more) + if (!more || walk->offset >= walk->sg->offset + walk->sg->length || + !(walk->offset & (PAGE_SIZE - 1))) scatterwalk_pagedone(walk, out, more); } EXPORT_SYMBOL_GPL(scatterwalk_done);