binder: Disable debug mask
According to Google we should set this to 0 as there is excessive logging in specific usecases which has a negative impact on latency. Change-Id: If03401694c2b746b5e2111cb5daafa8eab169e29 Signed-off-by: Alex Naidis <alex.naidis@linux.com>
This commit is contained in:
parent
62f386dc23
commit
97e80dde8b
1 changed files with 1 additions and 2 deletions
|
@ -137,8 +137,7 @@ enum {
|
|||
BINDER_DEBUG_PRIORITY_CAP = 1U << 13,
|
||||
BINDER_DEBUG_SPINLOCKS = 1U << 14,
|
||||
};
|
||||
static uint32_t binder_debug_mask = BINDER_DEBUG_USER_ERROR |
|
||||
BINDER_DEBUG_FAILED_TRANSACTION | BINDER_DEBUG_DEAD_TRANSACTION;
|
||||
static uint32_t binder_debug_mask = 0;
|
||||
module_param_named(debug_mask, binder_debug_mask, uint, 0644);
|
||||
|
||||
static char *binder_devices_param = CONFIG_ANDROID_BINDER_DEVICES;
|
||||
|
|
Loading…
Add table
Reference in a new issue