Re: [PATCH 01/11] rust: pin-init: internal: remove proc-macro[2] and quote workarounds

From: Benno Lossin

Date: Tue Dec 16 2025 - 04:45:46 EST


On Mon Dec 15, 2025 at 2:01 PM CET, Gary Guo wrote:
> On Thu, 11 Dec 2025 22:50:35 +0100
> Christian Schrefl <chrisi.schrefl@xxxxxxxxx> wrote:
>
>> Hi Gary,
>>
>> On 12/11/25 7:56 PM, Gary Guo wrote:
>> > From: Benno Lossin <lossin@xxxxxxxxxx>
>> >
>> > The kernel only had the `proc-macro` library available, whereas the
>> > user-space version also used `proc-macro2` and `quote`. Now both are
>> > available to the kernel, making it possible to remove the workarounds.
>> >
>> > Signed-off-by: Benno Lossin <lossin@xxxxxxxxxx>
>> > Co-developed-by: Gary Guo <gary@xxxxxxxxxxx>
>> > Signed-off-by: Gary Guo <gary@xxxxxxxxxxx>
>> > ---
>>
>> Its good to see some workarounds/hacks get removed!
>>
>> Overall seems fine, but maybe the imports should be changed to the
>> multiline kernel style?
>>
>> Anyways:
>>
>> Reviewed-by: Christian Schrefl <chrisi.schrefl@xxxxxxxxx>
>
> `pin-init` is its own subproject as it's also intended for userspace (or
> other baremetal/embedded users). I'll let Benno to decide if he would like
> to use kernel multiline import for `pin-init`.

I haven't thought about this too much yet. In pin-init, I rarely get
merge conflicts (in fact I don't recall any time when I had one), since
I author most of the patches. Now if the kernel were to change the
rustfmt config, then I'd change it as well.

If I convert it, then I will do so in a separate series as well.

Cheers,
Benno

> The rest of this series convert files to use kernel import style when
> depednencies are changed.
>
> Best,
> Gary