Re: [PATCH v1] rust: add reexports for macros

From: Miguel Ojeda
Date: Sun Feb 18 2024 - 15:24:11 EST


On Mon, Jan 29, 2024 at 3:58 PM Alice Ryhl <aliceryhl@xxxxxxxxxx> wrote:
>
> Currently, all macros are reexported with #[macro_export] only, which
> means that to access `new_work!` from the workqueue, you need to import
> it from the path `kernel::new_work` instead of importing it from the
> workqueue module like all other items in the workqueue. By adding
> reexports of the macros, it becomes possible to import the macros from
> the correct modules.
>
> It's still possible to import the macros from the root, but I don't
> think we can do anything about that.
>
> There is no functional change. This is merely a code cleanliness
> improvement.
>
> Signed-off-by: Alice Ryhl <aliceryhl@xxxxxxxxxx>

Applied to `rust-next` with the new `prelude`s removed and a slightly
reworded title -- thanks everyone!

(I also created a "good first issue" about other `prelude`s that can
be removed: https://github.com/Rust-for-Linux/linux/issues/1064)

Cheers,
Miguel