<div dir="ltr"><div dir="ltr"><div class="gmail_default" style="font-size:small"><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Sep 6, 2021 at 4:59 PM Cyril Hrubis <<a href="mailto:chrubis@suse.cz">chrubis@suse.cz</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi!<br>
> -     updated_timestamp = get_timestamp(fd_dest);<br>
> +     timestamp2 = get_timestamp(fd_dest);<br>
>  <br>
> -     if (timestamp == updated_timestamp)<br>
> +     diff = tst_timespec_diff(timestamp1, timestamp2);<br>
> +<br>
> +     if (!diff.tv_sec && !diff.tv_nsec)<br>
>               tst_brk(TFAIL, "copy_file_range did not update timestamp.");<br>
<br>
So as we changed the code to sleep for 1.5 sec I guess that we can<br>
expect the difference to be at least 1 second because:<br>
<br>
- the minimal granularity is 1s in which case we will get exactly 1s in<br>
  the diff<br>
<br>
- if the granularity is greater, we will get a bit more than 1s<br>
<br>
So I would go for something as:<br>
<br>
        long long diff_us = tst_timespec_diff_us(timestamp2, timestamp1);<br>
<br>
        if (diff_us >= 1000000 && diff_us <= 2000000)<br>
                tst_res(TPASS, "...");<br>
<br>
Which expects that the difference between timestamps is in a sane range<br>
not that it just have been changed.<br></blockquote><div><br></div><div><div class="gmail_default" style="font-size:small">Theoretically, this is correct, but I'm fearing that the process might</div><div class="gmail_default" style="font-size:small">cost more time on performing with different system loads.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">This means 'diff_us <= 2000000' is an unreliable condition to</div><div class="gmail_default" style="font-size:small">many virtual machines. That largely depends on the system</div><div class="gmail_default" style="font-size:small">scheduler at that moment as well.</div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
>       tst_res(TPASS, "copy_file_range sucessfully updated the timestamp");<br>
> -- <br>
> 2.31.1<br>
> <br>
> <br>
> -- <br>
> Mailing list info: <a href="https://lists.linux.it/listinfo/ltp" rel="noreferrer" target="_blank">https://lists.linux.it/listinfo/ltp</a><br>
<br>
-- <br>
Cyril Hrubis<br>
<a href="mailto:chrubis@suse.cz" target="_blank">chrubis@suse.cz</a><br>
<br>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div>Regards,<br></div><div>Li Wang<br></div></div></div></div>