You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The register offsets defined in the various arch files are fixed offsets for the kernel pt_regs. However, the pt_regs type does not have any stability guarantees, and some architectures (e.g. MIPS) may even have structure definitions that depend on the kernel configuration. These offsets should be resolved in a similar way to tracepoint structure definitions, e.g. by simply marking ctx as pt_regs in the relevant probes.
The register offsets defined in the various
arch
files are fixed offsets for the kernelpt_regs
. However, thept_regs
type does not have any stability guarantees, and some architectures (e.g. MIPS) may even have structure definitions that depend on the kernel configuration. These offsets should be resolved in a similar way to tracepoint structure definitions, e.g. by simply markingctx
aspt_regs
in the relevant probes.See the comments here: #3871 (comment)
The text was updated successfully, but these errors were encountered: