fshahinfar1 / kashk

Generate BPF kernel offload from source code of applications
1 stars 0 forks source link

Track BPF context passed to functions through fields of composite types #3

Open fshahinfar1 opened 8 months ago

fshahinfar1 commented 7 months ago

If there is a circular dependencies then we fail!

example:

struct a {
  struct *b;
}

struct b {
  struct *a;
}

I think the issue is I am not tracking the fields of composite data types very well.