X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=engines%2Fe4defrag.c;h=d6113a97ee9b6565dbdf8e5dc0381491bf6b61a4;hb=dac499a01d1958781e526df982d78d733f19c527;hp=6854070932a4d065a3989840b9b758cd4a0a494f;hpb=a1f871c72971efe84cd42670d5df4c4dc56dbd3f;p=fio.git diff --git a/engines/e4defrag.c b/engines/e4defrag.c index 68540709..d6113a97 100644 --- a/engines/e4defrag.c +++ b/engines/e4defrag.c @@ -98,8 +98,8 @@ static int fio_e4defrag_init(struct thread_data *td) } if (!o->inplace) { - long long len = td->o.file_size_high - td->o.start_offset; - r = fallocate(ed->donor_fd, 0, td->o.start_offset, len); + long long __len = td->o.file_size_high - td->o.start_offset; + r = fallocate(ed->donor_fd, 0, td->o.start_offset, __len); if (r) goto err; }