]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
scripts: generate_rust_analyzer: fix resolution of #[pin_data] macros
authorSeungJong Ha <engineer.jjhama@gmail.com>
Fri, 23 Jan 2026 13:18:44 +0000 (13:18 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 6 Feb 2026 15:57:42 +0000 (16:57 +0100)
commit8afa6c4d7abfb694a9cd24ab16b74a100ae37c6c
tree65d4eb0798bdb0876718a482944631711c82d45c
parent2426867644cc722e108439bf3d4e046ac45c6583
scripts: generate_rust_analyzer: fix resolution of #[pin_data] macros

commit e440bc5c190cd0e5f148b2892aeb1f4bbbf54507 upstream.

Currently, rust-analyzer fails to properly resolve structs annotated with
`#[pin_data]`. This prevents IDE features like "Go to Definition" from
working correctly for those structs.

Add the missing configuration to `generate_rust_analyzer.py` to ensure
the `pin-init` crate macros are handled correctly.

Signed-off-by: SeungJong Ha <engineer.jjhama@gmail.com>
Fixes: d7659acca7a3 ("rust: add pin-init crate build infrastructure")
Cc: stable@vger.kernel.org
Tested-by: Tamir Duberstein <tamird@kernel.org>
Acked-by: Tamir Duberstein <tamird@kernel.org>
Acked-by: Gary Guo <gary@garyguo.net>
Reviewed-by: Jesung Yang <y.j3ms.n@gmail.com>
Link: https://patch.msgid.link/20260123-fix-pin-init-crate-dependecies-v2-1-bb1c2500e54c@gmail.com
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
scripts/generate_rust_analyzer.py