kfree_tracer.h 302 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. #ifndef KFREE_TRACER_H__
  3. #define KFREE_TRACER_H__ 1
  4. #include <linux/types.h>
  5. #include <linux/kprobes.h>
  6. #include "mem_data.h"
  7. #include "../ktracer.h"
  8. #define KFREE_TRACER_SYMBOL_NAME "kfree"
  9. extern struct kretprobe kfree_probe;
  10. #endif // KFREE_TRACER_H__