Re: [RFC PATCH 11/13] netdevice.h: Fix parentheses around macro parameter use

From: Jakub Kicinski
Date: Fri May 05 2023 - 14:44:57 EST


On Thu, 4 May 2023 16:05:25 -0400 Mathieu Desnoyers wrote:
> Add missing parentheses around macro parameter use in the following
> pattern:
>
> - "x - 1" changed for "(x) - 1",
> - "x->member" changed for "(x)->member".
>
> to ensure operator precedence behaves as expected.
>
> Remove useless parentheses around macro parameter use in the following
> pattern:
>
> - m((x), y) changed for m(x, y), because comma has the lowest operator
> precedence, which makes the extra comma useless.

Sure, why not. Can we take it via netdev, tho?
I can't have any dependencies, right?