Re: [PATCH 0/3] module: Make .static_call_sites read-only after init

2025-01-03 Thread Petr Pavlu
On 1/3/25 15:06, Christophe Leroy wrote: > Le 23/12/2024 à 10:37, Petr Pavlu a écrit : >> Section .static_call_sites holds data structures that need to be sorted and >> processed only at module load time. The section is never modified afterwards. >> Make it therefore read-only after module initiali

Re: [PATCH 0/3] module: Make .static_call_sites read-only after init

2025-01-03 Thread Christophe Leroy
Hi Petr, Le 23/12/2024 à 10:37, Petr Pavlu a écrit : Section .static_call_sites holds data structures that need to be sorted and processed only at module load time. The section is never modified afterwards. Make it therefore read-only after module initialization to avoid any (non-)accidental mod

[PATCH 0/3] module: Make .static_call_sites read-only after init

2024-12-23 Thread Petr Pavlu
Section .static_call_sites holds data structures that need to be sorted and processed only at module load time. The section is never modified afterwards. Make it therefore read-only after module initialization to avoid any (non-)accidental modifications. Petr Pavlu (3): module: Constify paramete