From c53281fa972d2b0c02f0e436b3f90ba2df038b52 Mon Sep 17 00:00:00 2001 From: Dezhi Huang Date: Tue, 28 May 2024 17:40:06 +0800 Subject: [PATCH] ANDROID: Allow vendor modules perform more operations on binder transaction. Export binder_alloc_copy_from_buffer, allow vendor modules perform more operations on binder transaction and improve user operation fluency and timeliness experience. Bug: 343139379 Change-Id: I4353763099d854a62d0b70b003fbaca00e2c76e4 Signed-off-by: Dezhi Huang (cherry picked from commit d8db83d94e14b48819bba18cb975943c237e33df) --- drivers/android/binder_alloc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/android/binder_alloc.c b/drivers/android/binder_alloc.c index b3acbc4174fb..c07c82dee039 100644 --- a/drivers/android/binder_alloc.c +++ b/drivers/android/binder_alloc.c @@ -1305,3 +1305,4 @@ int binder_alloc_copy_from_buffer(struct binder_alloc *alloc, return binder_alloc_do_buffer_copy(alloc, false, buffer, buffer_offset, dest, bytes); } +EXPORT_SYMBOL_GPL(binder_alloc_copy_from_buffer);