Re: [PATCH v2] rust_binder: add TF_DEFER_COMPLETE flag for avoiding userspace roundtrip
Alice Ryhl <[email protected]>
| Newsgroups | org.kernel.vger.rust-for-linux,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
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