On 08/04/2022 14:14, John Garry wrote:
On 08/04/2022 11:30, Krzysztof Kozlowski wrote:This is standard practice and there is nothing special here. Pointers to
Several pointers to 'struct scsi_host_template' do not modify it, soIs this standard practice? What is so special here?
made them const for safety.
const are preferred because:
1. They add safety if data is actually const. This is not yet the case,
but scsi_host_template allocation could be made const with some effort.
2. The more const variables, the easier function contents and its impact
is to understand. This is actually the biggest benefit when dealing with
code touching different structures.
In general, constifying is a common practice everywhere in the kernel.