sched-ext / scx

sched_ext schedulers and tools
https://bit.ly/scx_slack
GNU General Public License v2.0
707 stars 55 forks source link

scx_flatcg: Make good use of __sync_fetch_and_sub() #412

Closed vax-r closed 2 weeks ago

vax-r commented 3 weeks ago

Summary

Fetch the value of delta directly from the returned value from __sync_fetch_and_sub, as it returns the origin value of cgc->cvtime_delta.

Additional fetching instruction of cgc->cvtime_delta would be redundant here.