Re: [PATCH 02/13] kallsyms: Increase maximum kernel symbol length to 512

2021-04-14 Thread Nick Desaulniers
On Wed, Apr 14, 2021 at 11:48 AM wrote: > > From: Miguel Ojeda > > Rust symbols can become quite long due to namespacing introduced > by modules, types, traits, generics, etc. For instance, for: > > pub mod my_module { > pub struct MyType; > pub struct MyGenericType(T); > >

[PATCH 02/13] kallsyms: Increase maximum kernel symbol length to 512

2021-04-14 Thread ojeda
From: Miguel Ojeda Rust symbols can become quite long due to namespacing introduced by modules, types, traits, generics, etc. For instance, for: pub mod my_module { pub struct MyType; pub struct MyGenericType(T); pub trait MyTrait { fn my_method() ->