Skip to content
Advertisement

bpf/bcc reports error when trying to access `struct rq`

This is my bpf program to profile a kernel function pick_next_task_fiar.

JavaScript

It reports error as follow:

JavaScript

My question why the bpf can not recognise the struct rq since I have already included the # include <linux/sched.h>. However, it does recognise the struct task_struct. These two structs are in the same head file.

Kernel version: 4.4.0-141-generic on ubuntu 16.04

Advertisement

Answer

struct rq is actually not part of the kernel headers, as you can see on Bootlin.

You can either:

  • retrieve the offset to rq->cpu from the rq pointer and hardcode it in your BPF program, but I wouldn’t recommend it;
  • or find some other way to retrieve the cpu number, maybe through prev or the current task (e.g., prev->cpu).
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement