Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Writing a Minimal Scheduler with eBPF, sched_ex...

Writing a Minimal Scheduler with eBPF, sched_ext, and C

Today, eBPF is used for software-defined networking, observability, monitoring tools, and more. Previously, creating these was labor-intensive and had a high barrier to entry. With the new scheduler extensions, we can now add custom schedulers to this list. Sched_ext allows us to write schedulers with custom policies directly in eBPF.
In this talk, we’ll develop a basic FIFO (First-In-First-Out) scheduler in C to show you how to get started with writing your own. If you’re interested in diving deeper into eBPF, join us for a quick hands-on intro to custom scheduling!

Johannes Bechberger

March 24, 2025
Tweet

More Decks by Johannes Bechberger

Other Decks in Programming

Transcript

  1. eBPF is a crazy technology, it’s like putting JavaScript into

    the Linux kernel Brendan Gregg “ https://www.youtube.com/watch?v=tDacjrSCeq4
  2. eBPF is a crazy technology, it’s like putting JavaScript into

    the Linux kernel Brendan Gregg “ https://www.facesofopensource.com/brendan-gregg/
  3. Structure • Idea • Implementation • Demo • Modifying values

    Having fun with schedulers github.com/parttimenerd/minimal-scheduler Try it yourself
  4. Making errors is normal !!/** * @timeout_ms: The maximum amount

    of time, in milliseconds, that a * runnable task should be able to wait before being scheduled. The * maximum timeout may not exceed the default timeout of 30 seconds. * * Defaults to the maximum allowed timeout value of 30 seconds. !*/ u32 timeout_ms; https://github.com/torvalds/linux/blob/master/kernel/sched/ext.c
  5. Task 1 CPU 1 Local Queue CPU 2 Local Queue

    Global Queue Scheduler ... ... Scheduler dance
  6. Lottery Scheduler Task 1 CPU 1 CPU 2 Scheduling Queue

    treated as a lottery bowl ... ... Draw randomly from queue Ask for new task Return finished task Enqueue task for the first time Task 2 2 1 3 4 7 6 1
  7. VRuntime-based Scheduler • Tracks virtual runtime (vruntime) of tasks (time

    on CPU) • Task with shortest vruntime runs first • Use a simple priority queue runtime
  8. eBPF is a crazy technology, it’s like putting JavaScript into

    the Linux kernel Brendan Gregg “ https://www.youtube.com/watch?v=tDacjrSCeq4