Re: [PATCH v3 4/5] print: use new #[export] macro for rust_fmt_argument

2025-03-03 Thread Petr Mladek
On Mon 2025-03-03 08:45:15, Alice Ryhl wrote: > This moves the rust_fmt_argument function over to use the new #[export] > macro, which will verify at compile-time that the function signature > matches what is in the header file. > > Reviewed-by: Andreas Hindborg > Reviewed-by: Tamir Duberstein >

Re: [PATCH v3 4/5] print: use new #[export] macro for rust_fmt_argument

2025-03-03 Thread Alice Ryhl
On Mon, Mar 3, 2025 at 10:46 AM Andy Shevchenko wrote: > > On Mon, Mar 03, 2025 at 08:45:15AM +, Alice Ryhl wrote: > > This moves the rust_fmt_argument function over to use the new #[export] > > macro, which will verify at compile-time that the function signature > > matches what is in the hea

Re: [PATCH v3 4/5] print: use new #[export] macro for rust_fmt_argument

2025-03-03 Thread Andy Shevchenko
On Mon, Mar 03, 2025 at 08:45:15AM +, Alice Ryhl wrote: > This moves the rust_fmt_argument function over to use the new #[export] > macro, which will verify at compile-time that the function signature > matches what is in the header file. ... > extern bool no_hash_pointers; > int no_hash_po

[PATCH v3 4/5] print: use new #[export] macro for rust_fmt_argument

2025-03-03 Thread Alice Ryhl
This moves the rust_fmt_argument function over to use the new #[export] macro, which will verify at compile-time that the function signature matches what is in the header file. Reviewed-by: Andreas Hindborg Reviewed-by: Tamir Duberstein Acked-by: Greg Kroah-Hartman Signed-off-by: Alice Ryhl --