mirror of https://gitee.com/openkylin/linux.git
ANDROID: binder: Remove obsolete proc waitqueue.
It was no longer being used. Signed-off-by: Martijn Coenen <maco@android.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4a5f3cde4d
commit
e940c10875
|
@ -493,8 +493,6 @@ enum binder_deferred_state {
|
||||||
* (protected by @inner_lock)
|
* (protected by @inner_lock)
|
||||||
* @todo: list of work for this process
|
* @todo: list of work for this process
|
||||||
* (protected by @inner_lock)
|
* (protected by @inner_lock)
|
||||||
* @wait: wait queue head to wait for proc work
|
|
||||||
* (invariant after initialized)
|
|
||||||
* @stats: per-process binder statistics
|
* @stats: per-process binder statistics
|
||||||
* (atomics, no lock needed)
|
* (atomics, no lock needed)
|
||||||
* @delivered_death: list of delivered death notification
|
* @delivered_death: list of delivered death notification
|
||||||
|
@ -537,7 +535,6 @@ struct binder_proc {
|
||||||
bool is_dead;
|
bool is_dead;
|
||||||
|
|
||||||
struct list_head todo;
|
struct list_head todo;
|
||||||
wait_queue_head_t wait;
|
|
||||||
struct binder_stats stats;
|
struct binder_stats stats;
|
||||||
struct list_head delivered_death;
|
struct list_head delivered_death;
|
||||||
int max_threads;
|
int max_threads;
|
||||||
|
|
Loading…
Reference in New Issue