From 85b85c383634690b1fde245b182889b9b5ff0a09 Mon Sep 17 00:00:00 2001 From: Satya Durga Srinivasu Prabhala Date: Tue, 15 Dec 2020 00:44:27 -0800 Subject: [PATCH] ANDROID: binder: Export binder_transaction_received trace point Vendor modules would like to register with the binder_transaction_received trace point to implement features carried in their downstream kernels. Bug: 174219217 Change-Id: Ica0f90c60964fc845de05169cbdd8a4948adb1cd Signed-off-by: Satya Durga Srinivasu Prabhala --- drivers/android/binder.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/android/binder.c b/drivers/android/binder.c index 5ae2f6b7baed..a068daaa7c30 100644 --- a/drivers/android/binder.c +++ b/drivers/android/binder.c @@ -6354,5 +6354,6 @@ device_initcall(binder_init); #define CREATE_TRACE_POINTS #include "binder_trace.h" +EXPORT_TRACEPOINT_SYMBOL_GPL(binder_transaction_received); MODULE_LICENSE("GPL v2");