Skip to content

Commit 595718c

Browse files
tamirdgregkh
authored andcommitted
scripts: generate_rust_analyzer: Add pin_init_internal deps
commit 74e15ac upstream. Commit d7659ac ("rust: add pin-init crate build infrastructure") did not add dependencies to `pin_init_internal`, resulting in broken navigation. Thus add them now. [ Tamir elaborates: "before this series, go-to-symbol from pin_init_internal to e.g. proc_macro::TokenStream doesn't work." - Miguel ] Signed-off-by: Tamir Duberstein <tamird@kernel.org> Reviewed-by: Jesung Yang <y.j3ms.n@gmail.com> Acked-by: Benno Lossin <lossin@kernel.org> Fixes: d7659ac ("rust: add pin-init crate build infrastructure") Cc: stable@vger.kernel.org Link: https://patch.msgid.link/20250723-rust-analyzer-pin-init-v1-3-3c6956173c78@kernel.org Signed-off-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 5bfa32f commit 595718c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/generate_rust_analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def append_sysroot_crate(
102102
append_crate(
103103
"pin_init_internal",
104104
srctree / "rust" / "pin-init" / "internal" / "src" / "lib.rs",
105-
[],
105+
["std", "proc_macro"],
106106
cfg=["kernel"],
107107
is_proc_macro=True,
108108
)

0 commit comments

Comments
 (0)