I am learning system tap utility to debug Linux Kernel.
Here is the sample code:
probe module("e1000").function("e1000_get*") {
printf("%s\n", ppfunc())
}
probe module("e1000").function("e1000_get*").return {
printf("%s \n", ppfunc())
}
What is the difference between
probe module("e1000").function("e1000_get*")
and probe module("e1000").function("e1000_get*").call
I know that call is for function entry, is the above for both entry and exit