Re: [RFC PATCH v3 2/4] ufs: core: mcq: Adds Multi-Circular Queue support
From: Bart Van Assche
Date: Thu Sep 08 2022 - 18:02:59 EST
On 9/5/22 09:27, Bean Huo wrote:
static read_queues is not initialized.
Hi Bean,
The Linux kernel coding style guide does not allow to explicitly
initialize static variables to zero. The C standard requires that static
variables that are not initialized explicitly are initialized to zero.
From https://en.wikipedia.org/wiki/.bss: "In C, statically allocated
objects without an explicit initializer are initialized to zero (for
arithmetic types) or a null pointer (for pointer types)."
Thanks,
Bart.