fprobe
Regular
4.4
: Absent ⚠️
4.8
: Absent ⚠️
4.10
: Absent ⚠️
4.13
: Absent ⚠️
4.15
: Absent ⚠️
4.18
: Absent ⚠️
5.0
: Absent ⚠️
5.3
: Absent ⚠️
5.4
: Absent ⚠️
5.8
: Absent ⚠️
5.11
: Absent ⚠️
5.13
: Absent ⚠️
5.15
: Absent ⚠️
5.19
: ✅struct fprobe {
struct ftrace_ops ops;
long unsigned int nmissed;
unsigned int flags;
struct rethook *rethook;
void (*entry_handler)(struct fprobe *, long unsigned int, struct pt_regs *);
void (*exit_handler)(struct fprobe *, long unsigned int, struct pt_regs *);
};
6.2
: ✅struct fprobe {
struct ftrace_ops ops;
long unsigned int nmissed;
unsigned int flags;
struct rethook *rethook;
void (*entry_handler)(struct fprobe *, long unsigned int, struct pt_regs *);
void (*exit_handler)(struct fprobe *, long unsigned int, struct pt_regs *);
};
6.5
: ✅struct fprobe {
struct ftrace_ops ops;
long unsigned int nmissed;
unsigned int flags;
struct rethook *rethook;
size_t entry_data_size;
int nr_maxactive;
int (*entry_handler)(struct fprobe *, long unsigned int, long unsigned int, struct pt_regs *, void *);
void (*exit_handler)(struct fprobe *, long unsigned int, long unsigned int, struct pt_regs *, void *);
};
6.8
: ✅struct fprobe {
struct ftrace_ops ops;
long unsigned int nmissed;
unsigned int flags;
struct rethook *rethook;
size_t entry_data_size;
int nr_maxactive;
int (*entry_handler)(struct fprobe *, long unsigned int, long unsigned int, struct pt_regs *, void *);
void (*exit_handler)(struct fprobe *, long unsigned int, long unsigned int, struct pt_regs *, void *);
};
arm64
: Absent ⚠️
armhf
: Absent ⚠️
ppc64el
: Absent ⚠️
riscv64
: Absent ⚠️
aws
: Absent ⚠️
azure
: Absent ⚠️
gcp
: Absent ⚠️
lowlatency
: Absent ⚠️
Regular
5.19
and 6.2
✅
6.2
and 6.5
⚠️size_t entry_data_size
int nr_maxactive
void (*entry_handler)(struct fprobe *, long unsigned int, struct pt_regs *)
➡️ int (*entry_handler)(struct fprobe *, long unsigned int, long unsigned int, struct pt_regs *, void *)
void (*exit_handler)(struct fprobe *, long unsigned int, struct pt_regs *)
➡️ void (*exit_handler)(struct fprobe *, long unsigned int, long unsigned int, struct pt_regs *, void *)
6.5
and 6.8
✅