mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 10:11:36 +00:00
dm kcopyd: avoid pointless job splitting
Don't split SUB_JOB_SIZE jobs If the job size equals SUB_JOB_SIZE, there is no point in splitting it. Splitting it just unnecessarily wastes time, because the split job size is SUB_JOB_SIZE too. Signed-off-by: Mikulas Patocka <mpatocka@redhat.com> Signed-off-by: Alasdair G Kergon <agk@redhat.com>
This commit is contained in:
parent
6f13f6fba7
commit
a705a34a56
@ -578,7 +578,7 @@ int dm_kcopyd_copy(struct dm_kcopyd_client *kc, struct dm_io_region *from,
|
||||
job->fn = fn;
|
||||
job->context = context;
|
||||
|
||||
if (job->source.count < SUB_JOB_SIZE)
|
||||
if (job->source.count <= SUB_JOB_SIZE)
|
||||
dispatch_job(job);
|
||||
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user