Lines Matching refs:fp

33 	void (*entry_handler)(struct fprobe *fp, unsigned long entry_ip, struct pt_regs *regs);
34 void (*exit_handler)(struct fprobe *fp, unsigned long entry_ip, struct pt_regs *regs);
46 static inline bool fprobe_disabled(struct fprobe *fp) in fprobe_disabled() argument
48 return (fp) ? fp->flags & FPROBE_FL_DISABLED : false; in fprobe_disabled()
51 static inline bool fprobe_shared_with_kprobes(struct fprobe *fp) in fprobe_shared_with_kprobes() argument
53 return (fp) ? fp->flags & FPROBE_FL_KPROBE_SHARED : false; in fprobe_shared_with_kprobes()
57 int register_fprobe(struct fprobe *fp, const char *filter, const char *notfilter);
58 int register_fprobe_ips(struct fprobe *fp, unsigned long *addrs, int num);
59 int register_fprobe_syms(struct fprobe *fp, const char **syms, int num);
60 int unregister_fprobe(struct fprobe *fp);
62 static inline int register_fprobe(struct fprobe *fp, const char *filter, const char *notfilter) in register_fprobe() argument
66 static inline int register_fprobe_ips(struct fprobe *fp, unsigned long *addrs, int num) in register_fprobe_ips() argument
70 static inline int register_fprobe_syms(struct fprobe *fp, const char **syms, int num) in register_fprobe_syms() argument
74 static inline int unregister_fprobe(struct fprobe *fp) in unregister_fprobe() argument
87 static inline void disable_fprobe(struct fprobe *fp) in disable_fprobe() argument
89 if (fp) in disable_fprobe()
90 fp->flags |= FPROBE_FL_DISABLED; in disable_fprobe()
99 static inline void enable_fprobe(struct fprobe *fp) in enable_fprobe() argument
101 if (fp) in enable_fprobe()
102 fp->flags &= ~FPROBE_FL_DISABLED; in enable_fprobe()