答复: [PATCH] ANDROID: binder: correct the cmd print for BINDER_WORK_RETURN_ERROR

2018-05-09 Thread 宋金时
artman; Martijn Coenen; Arve Hjønnevåg; LKML 主题: Re: [PATCH] ANDROID: binder: correct the cmd print for BINDER_WORK_RETURN_ERROR On Wed, May 9, 2018 at 12:31 AM 宋金时 <songjin...@xiaomi.com> wrote: > In case of the BINDER_WORK_RETURN_ERROR the cmd is no assignment, > so it's value

答复: [PATCH] ANDROID: binder: correct the cmd print for BINDER_WORK_RETURN_ERROR

2018-05-09 Thread 宋金时
; Arve Hjønnevåg; LKML 主题: Re: [PATCH] ANDROID: binder: correct the cmd print for BINDER_WORK_RETURN_ERROR On Wed, May 9, 2018 at 12:31 AM 宋金时 wrote: > In case of the BINDER_WORK_RETURN_ERROR the cmd is no assignment, > so it's value will be old value or dirty value, before modifying &g

Re: [PATCH] ANDROID: binder: correct the cmd print for BINDER_WORK_RETURN_ERROR

2018-05-09 Thread Todd Kjos
On Wed, May 9, 2018 at 12:31 AM 宋金时 wrote: > In case of the BINDER_WORK_RETURN_ERROR the cmd is no assignment, > so it's value will be old value or dirty value, before modifying > e->cmd, assign the value of the e->cmd to cmd to ensure the correct > print of

Re: [PATCH] ANDROID: binder: correct the cmd print for BINDER_WORK_RETURN_ERROR

2018-05-09 Thread Todd Kjos
On Wed, May 9, 2018 at 12:31 AM 宋金时 wrote: > In case of the BINDER_WORK_RETURN_ERROR the cmd is no assignment, > so it's value will be old value or dirty value, before modifying > e->cmd, assign the value of the e->cmd to cmd to ensure the correct > print of binder_stat_br. That's not the

[PATCH] ANDROID: binder: correct the cmd print for BINDER_WORK_RETURN_ERROR

2018-05-09 Thread 宋金时
In case of the BINDER_WORK_RETURN_ERROR the cmd is no assignment, so it's value will be old value or dirty value, before modifying e->cmd, assign the value of the e->cmd to cmd to ensure the correct print of binder_stat_br. Signed-off-by: songjinshi --- diff --git

[PATCH] ANDROID: binder: correct the cmd print for BINDER_WORK_RETURN_ERROR

2018-05-09 Thread 宋金时
In case of the BINDER_WORK_RETURN_ERROR the cmd is no assignment, so it's value will be old value or dirty value, before modifying e->cmd, assign the value of the e->cmd to cmd to ensure the correct print of binder_stat_br. Signed-off-by: songjinshi --- diff --git a/drivers/android/binder.c