vishalc-ibm

Results 6 comments of vishalc-ibm

I don’t think this issue has anything to do with the OOM killer either. Following the steps shared by @ricardobranco777, I was able to reproduce the problem on a local...

> So, we are using a somewhat old version of busybox:glibc in our tests (1.34.1). Might make sense to bump to 1.35.1, although I just realized I have no idea...

I have been able to boil things down to this ```c #include #include #include #include int main(int argc, char *argv[]) { int child = vfork(); printf("Child: %d\n", child); if (child)...

Further debugging reveals, For ppc64le architecture, when a child created using `vfork()` exits|returns without calling `exit()`, the program gets **SIGSEGV** Without exit() ``` $ cat test.c #include #include #include #include...

When I write my own c bpf program which includes `vmlinux.h` and compile it using `clang`, it works like a charm. I am able to immediately compile and load. Now,...

I collected `trace.log` file ``` # bpftrace -v do_task_stat.trace.bt &> trace.log # grep -Ev "preserve|declaration" trace.log ./vmlinux.h:38:3: error: typedef redefinition with different types ('struct __vector128' vs 'struct __vector128') /lib/modules/6.10.0-rc2+/build/arch/powerpc/include/uapi/asm/types.h:36:32: note:...