Re: [PATCH v2] rust_binder: add TF_DEFER_COMPLETE flag for avoiding userspace roundtrip
From: Alice Ryhl
Date: Thu Jul 23 2026 - 08:03:53 EST
On Wed, Jul 22, 2026 at 09:09:22PM +0000, Alice Ryhl wrote:
> + // Note that if the thread list is empty, then the call to `pop_work()` has changed
> + // `process_work_list` back to `false` even if we set it to `true` above.
> + thread_has_deferred_work = inner.process_work_list;
Oops, as sashiko points out, this should be:
thread_has_deferred_work = !inner.work_list.is_empty();
Alice