There is a jprobe_example.c
in v3. But it is missing in v4. I tried to compile v3 example having kernel v4 and it works giving me jprobe_example.ko
, but when I try to insmod
it, it fails with
insmod: ERROR: could not insert module jprobe_example.ko: Operation not permitted.
/var/log/syslog
says that register_jprobe failed, returned -38
Another two examples are insmod
-ed fine. So, the question is, were jprobes removed from the kernel v4? Why can I compile the module but not insmod
it?