Lines Matching refs:fp

37 	int (*entry_handler)(struct fprobe *fp, unsigned long entry_ip,
40 void (*exit_handler)(struct fprobe *fp, unsigned long entry_ip,
54 static inline bool fprobe_disabled(struct fprobe *fp) in fprobe_disabled() argument
56 return (fp) ? fp->flags & FPROBE_FL_DISABLED : false; in fprobe_disabled()
59 static inline bool fprobe_shared_with_kprobes(struct fprobe *fp) in fprobe_shared_with_kprobes() argument
61 return (fp) ? fp->flags & FPROBE_FL_KPROBE_SHARED : false; in fprobe_shared_with_kprobes()
65 int register_fprobe(struct fprobe *fp, const char *filter, const char *notfilter);
66 int register_fprobe_ips(struct fprobe *fp, unsigned long *addrs, int num);
67 int register_fprobe_syms(struct fprobe *fp, const char **syms, int num);
68 int unregister_fprobe(struct fprobe *fp);
69 bool fprobe_is_registered(struct fprobe *fp);
71 static inline int register_fprobe(struct fprobe *fp, const char *filter, const char *notfilter) in register_fprobe() argument
75 static inline int register_fprobe_ips(struct fprobe *fp, unsigned long *addrs, int num) in register_fprobe_ips() argument
79 static inline int register_fprobe_syms(struct fprobe *fp, const char **syms, int num) in register_fprobe_syms() argument
83 static inline int unregister_fprobe(struct fprobe *fp) in unregister_fprobe() argument
87 static inline bool fprobe_is_registered(struct fprobe *fp) in fprobe_is_registered() argument
100 static inline void disable_fprobe(struct fprobe *fp) in disable_fprobe() argument
102 if (fp) in disable_fprobe()
103 fp->flags |= FPROBE_FL_DISABLED; in disable_fprobe()
112 static inline void enable_fprobe(struct fprobe *fp) in enable_fprobe() argument
114 if (fp) in enable_fprobe()
115 fp->flags &= ~FPROBE_FL_DISABLED; in enable_fprobe()