Re: [PATCH -next v8 1/3] rust: clist: Add support to interface with C linked lists
From: Miguel Ojeda
Date: Tue Feb 10 2026 - 04:20:33 EST
On Tue, Feb 10, 2026 at 7:52 AM kernel test robot <lkp@xxxxxxxxx> wrote:
>
> Diff in tools/perf/tests/workloads/code_with_type.rs:10:
>
> #[no_mangle]
> pub extern "C" fn test_rs(count: u32) {
> - let mut b = Buf { data1: 0, data2: String::from("data"), data3: 0};
> + let mut b = Buf {
> + data1: 0,
> + data2: String::from("data"),
> + data3: 0,
> + };
This part is an independent issue that sadly got into the latest
linux-next tag, so it can be ignored here:
https://lore.kernel.org/lkml/CANiq72mW=hcvUGt=WENRiYVeVbb2bnYzizE00Eo-MW3b_MwRrg@xxxxxxxxxxxxxx/
Cheers,
Miguel