|
@@ -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)
|
|
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);
|
|
scatterwalk_pagedone(walk, out, more);
|
|
}
|
|
}
|
|
EXPORT_SYMBOL_GPL(scatterwalk_done);
|
|
EXPORT_SYMBOL_GPL(scatterwalk_done);
|