* Copyright 2007, Ingo Weinhold, ingo_weinhold@gmx.de.
* Distributed under the terms of the MIT License.
*/
#include "DefragmentJob.h"
#include <syscalls.h>
#include "PartitionReference.h"
DefragmentJob::DefragmentJob(PartitionReference* partition)
: DiskDeviceJob(partition)
{
}
DefragmentJob::~DefragmentJob()
{
}
status_t
DefragmentJob::Do()
{
int32 changeCounter = fPartition->ChangeCounter();
status_t error = _kern_defragment_partition(fPartition->PartitionID(),
&changeCounter);
if (error != B_OK)
return error;
fPartition->SetChangeCounter(changeCounter);
return B_OK;
}