diff options
| author | Uma Maheshwari Bhiram <ubhira@codeaurora.org> | 2013-11-08 15:19:38 -0800 |
|---|---|---|
| committer | Mister Oyster <oysterized@gmail.com> | 2017-05-29 12:31:00 +0200 |
| commit | f12ba1ca1b7cd2bd39a39f25ffd345232145ace4 (patch) | |
| tree | 650cd8e14c45899f347b206b8d4bb4a055dce1d3 /drivers/android | |
| parent | 229f0917123219ac40fbea81f837af37ea378802 (diff) | |
binder: Quiet Binder
Temporary change to avoid watchdog bark because of
excessive failed transaction logging
CRs-Fixed: 572081
Change-Id: Id664d65ab9e78627991f8b7d4f4e5e126908c214
Signed-off-by: Uma Maheshwari Bhiram <ubhira@codeaurora.org>
Diffstat (limited to 'drivers/android')
| -rw-r--r-- | drivers/android/binder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/android/binder.c b/drivers/android/binder.c index 311a3ee30..deef3b95c 100644 --- a/drivers/android/binder.c +++ b/drivers/android/binder.c @@ -110,8 +110,8 @@ enum { BINDER_DEBUG_PRIORITY_CAP = 1U << 14, BINDER_DEBUG_BUFFER_ALLOC_ASYNC = 1U << 15, }; -static uint32_t binder_debug_mask = BINDER_DEBUG_USER_ERROR | - BINDER_DEBUG_FAILED_TRANSACTION | BINDER_DEBUG_DEAD_TRANSACTION; +static uint32_t binder_debug_mask; + module_param_named(debug_mask, binder_debug_mask, uint, S_IWUSR | S_IRUGO); static bool binder_debug_no_lock; |
