On 09/05/2025 22:34, Alexey Dobriyan wrote:
>  
> +Variable declarations
> +---------------------
> +
> +Each variable is declared in the innermost scope possible
> +where ``for`` initialization clause counts as a scope as well.
> +
> +Inside specific scope each variable is declared as late as possible as if
> +declarations have "mass" and "fall down":
> +
> +.. code-block:: c
> +
> +     int f(void *priv)
> +     {
> +             struct xxx_obj *obj = to_xxx_obj(priv);
> +
> +             rcu_read_lock();
> +             int s_xxx = 0;

NAK, so silence won't be treated as agreement.



Best regards,
Krzysztof

Reply via email to