
Add hooks to capture various per-zone memory stats when a trigger threshold is hit. Bug: 178721511 Change-Id: Ibe39263ddb05ffc3fa63b5225497a90c6480c8d7 Signed-off-by: Georgi Djakov <quic_c_gdjako@quicinc.com>
30 lines
685 B
C
30 lines
685 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#undef TRACE_SYSTEM
|
|
#define TRACE_SYSTEM psi
|
|
|
|
#define TRACE_INCLUDE_PATH trace/hooks
|
|
|
|
#if !defined(_TRACE_HOOK_PSI_H) || defined(TRACE_HEADER_MULTI_READ)
|
|
#define _TRACE_HOOK_PSI_H
|
|
|
|
#include <linux/psi_types.h>
|
|
#include <linux/tracepoint.h>
|
|
#include <trace/hooks/vendor_hooks.h>
|
|
|
|
#if defined(CONFIG_TRACEPOINTS) && defined(CONFIG_ANDROID_VENDOR_HOOKS)
|
|
|
|
DECLARE_HOOK(android_vh_psi_event,
|
|
TP_PROTO(struct psi_trigger *t),
|
|
TP_ARGS(t));
|
|
|
|
DECLARE_HOOK(android_vh_psi_group,
|
|
TP_PROTO(struct psi_group *group),
|
|
TP_ARGS(group));
|
|
|
|
#endif
|
|
|
|
#endif /* _TRACE_HOOK_PSI_H */
|
|
|
|
/* This part must be outside protection */
|
|
#include <trace/define_trace.h>
|