[PATCH v3] init: staging: Fix missing warning/taint on builtin code

2024-07-05 Thread Ágatha Isabelle Chris Moreira Guedes
introduced but I think they're unavoidable. Some IMHO don´t make sense at all, I think they would apply for most regular macros but initcall macros are just way different. Fixes: 061b1bd394ca ("Staging: add TAINT_CRAP for all drivers/staging code") Signed-off-by: Ágatha Isabell

Re: [PATCH v2] init: staging: Fix missing warning/taint on builtin code

2024-07-05 Thread Ágatha Isabelle Chris Moreira Guedes
Hello, Please disregard this one, there will be a v3 soon. There were some oversights on my side regarding some review points, and also the code itself. On Thu, Jul 04, 2024 at 09:20:49PM GMT, Ágatha Isabelle Chris Moreira Guedes wrote: > diff --git a/init/main.c b/init/main.c >

[PATCH v2] init: staging: Fix missing warning/taint on builtin code

2024-07-04 Thread Ágatha Isabelle Chris Moreira Guedes
introduced but I think they're unavoidable. Some IMHO don´t make sense at all, I think they would apply for most regular macros but initcall macros are just way different. Signed-off-by: Ágatha Isabelle Chris Moreira Guedes --- CHANGELOG v2: - Changed the way we hook into the initcal

Re: [PATCH] staging: Fix missing warning/taint on builtin code

2024-07-02 Thread Ágatha Isabelle Chris Moreira Guedes
On Tue, Jul 02, 2024 at 09:50:49AM GMT, Uwe Kleine-König wrote: > Hello Ágatha, > > On Tue, Jul 02, 2024 at 02:44:31AM -0300, Ágatha Isabelle Chris Moreira > Guedes wrote: > > ACKNOWLEDGEMENTS > > Thanks for Jookia, heat and ukleinek for the important comments & &

[PATCH] staging: Fix missing warning/taint on builtin code

2024-07-01 Thread Ágatha Isabelle Chris Moreira Guedes
through initcalls and not through load_module(). This might prevent relevant information of being available on a bug report (i.e. on a panic log) among other possible problems. Signed-off-by: Ágatha Isabelle Chris Moreira Guedes --- ACKNOWLEDGEMENTS Thanks for Jookia, heat and ukleinek for the