Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The umount of the job tmpdir often takes a lot of time (minutes!) when the user write a log of data to it, because there are many dirty pages which are written to the disk before the umount completes. This writing is obviously a waste of resources, because as soon as the unmount is finished, the backup image for the filesystem is destroyed anyway. Unfortunatly, we currenty don't have a solid way to avoid the unnecessary writeback. Use lazy umount so that at least mxqd doesn't block while the writeback is happening.
- Loading branch information