This change is intended to reduce the chance of a missed ABI break involving vendor hooks. The following type is now fully defined in ABI XML. * `struct timekeeper` symbol '__traceiter_android_rvh_account_irq' changed CRC changed from 0x18e0dccf to 0x4e82c102 symbol '__traceiter_android_rvh_after_dequeue_task' changed CRC changed from 0x7efc419b to 0x1c0066e1 symbol '__traceiter_android_rvh_after_enqueue_task' changed CRC changed from 0xd6f0f603 to 0xf7eaafb8 ... 75 omitted; 78 symbols have only CRC changes Bug: 233047575 Change-Id: I8c04eede1b9d9e788abce95cb31dbd19916774ef Signed-off-by: Giuliano Procida <gprocida@google.com>
21 lines
569 B
C
21 lines
569 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#undef TRACE_SYSTEM
|
|
#define TRACE_SYSTEM timekeeping
|
|
|
|
#define TRACE_INCLUDE_PATH trace/hooks
|
|
|
|
#if !defined(_TRACE_HOOK_TIMEKEEPING_H) || defined(TRACE_HEADER_MULTI_READ)
|
|
#define _TRACE_HOOK_TIMEKEEPING_H
|
|
|
|
#include <trace/hooks/vendor_hooks.h>
|
|
|
|
/* struct timekeeper */
|
|
#include <linux/timekeeper_internal.h>
|
|
DECLARE_RESTRICTED_HOOK(android_rvh_tk_based_time_sync,
|
|
TP_PROTO(struct timekeeper *tk),
|
|
TP_ARGS(tk), 1);
|
|
|
|
#endif /* _TRACE_HOOK_TIMEKEEPING_H */
|
|
/* This part must be outside protection */
|
|
#include <trace/define_trace.h>
|