[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <54ab41a1-2982-aec3-bc03-454a2770aefd@gmail.com>
Date: Thu, 1 Jun 2023 14:52:27 -0300
From: Martin Rodriguez Reboredo <yakoyoku@...il.com>
To: Gary Guo <gary@...yguo.net>, Alice Ryhl <aliceryhl@...gle.com>
Cc: rust-for-linux@...r.kernel.org, Miguel Ojeda <ojeda@...nel.org>,
Wedson Almeida Filho <wedsonaf@...il.com>,
Tejun Heo <tj@...nel.org>,
Lai Jiangshan <jiangshanlai@...il.com>,
Alex Gaynor <alex.gaynor@...il.com>,
Boqun Feng <boqun.feng@...il.com>,
Björn Roy Baron <bjorn3_gh@...tonmail.com>,
Benno Lossin <benno.lossin@...ton.me>,
linux-kernel@...r.kernel.org, patches@...ts.linux.dev,
Wedson Almeida Filho <walmeida@...rosoft.com>
Subject: Re: [PATCH v2 4/8] rust: workqueue: define built-in queues
On 6/1/23 14:30, Gary Guo wrote:
> On Thu, 1 Jun 2023 13:49:42 +0000
> Alice Ryhl <aliceryhl@...gle.com> wrote:
>
>> From: Wedson Almeida Filho <walmeida@...rosoft.com>
>>
>> We provide these methods because it lets us access these queues from
>> Rust without using unsafe code.
>>
>> These methods return `&'static Queue`. References annotated with the
>> 'static lifetime are used when the referent will stay alive forever.
>> That is ok for these queues because they are global variables and cannot
>> be destroyed.
>>
>> Signed-off-by: Wedson Almeida Filho <walmeida@...rosoft.com>
>> Co-developed-by: Alice Ryhl <aliceryhl@...gle.com>
>> Signed-off-by: Alice Ryhl <aliceryhl@...gle.com>
>> Reviewed-by: Martin Rodriguez Reboredo <yakoyoku@...il.com>
>
> This looks fine to me, so:
>
> Reviewed-by: Gary Guo <gary@...yguo.net>
>
> Just one question about style: would people prefer:
>
> kernel::workqueue::system().enqueue(...)
>
> or
>
> use kernel::workqueue::Queue;
> Queue::system().enqueue(...)
>
> ?
I can compare the first with `std::thread::spawn` and the second
with enqueuing an executor with a future. Both makes sense to me so
I can't decide.
> [...]
Powered by blists - more mailing lists