Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

scx_lavd: misc updates (verifier, README, monitor option name, and micro-optimization) #597

Merged
merged 3 commits into from
Sep 2, 2024

Commits on Sep 1, 2024

  1. scx_lavd: check a core type of previous cpu at pick_idle_cpu()

    If a task is performance-critical, pick_idle_cpu() checks if the
    previous core is a big core or not. If not, don't try to run on previous
    core since a performance-critical task is better to run on a big core.
    
    Signed-off-by: Changwoo Min <[email protected]>
    Changwoo Min committed Sep 1, 2024
    Configuration menu
    Copy the full SHA
    afbebae View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2024

  1. scx_lavd: update README

    Signed-off-by: Changwoo Min <[email protected]>
    Changwoo Min committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    3bc2fd4 View commit details
    Browse the repository at this point in the history
  2. scx_lavd: make the old verifier happy (bpf_cpumask_set_cpu)

    An old BPF verifier does not allow calling bpf_cpumask_set_cpu() in the
    BPF syscall context, so we defer actual bpf_cpumask_set_cpu() to the
    timer handler, update_sys_stat(), to workaround the problem.
    
    Signed-off-by: Changwoo Min <[email protected]>
    Changwoo Min committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    0108b83 View commit details
    Browse the repository at this point in the history