Search code examples
linux-kernelsmpaffinity

Processor affinity settings for Linux kernel modules?


In Windows, I can set the processor affinity of driver code using KeSetSystemAffinityThread, and check which processor my code is running on using KeGetCurrentProcessorNumber.

I'm trying to do something similar in a Linux kernel module, but the only affinity calls I can see are for userland processes. Is there any way to do this, so that I can run assembly code on a specific processor? (i.e. sgdt)

Edit:

I think I've figured out how to get the current processor. smp_processor_id() seems like it should work.


Solution

  • I think you'll probably have to modify the kernel, but the change isn't too rough. Just export sched_setaffinity in sched.c to modules:

      long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
      {
        ...
      }
    + EXPORT_SYMBOL_GPL(sched_setaffinity); // Exported, now callable from your code.