Re: [PATCH net-next] devlink: use _BITUL() macro instead of BIT() in the UAPI header

2021-01-05 Thread Jacob Keller
On 12/15/2020 2:25 AM, Tobias Klauser wrote: > The BIT() macro is not available for the UAPI headers. Moreover, it can > be defined differently in user space headers. Thus, replace its usage > with the _BITUL() macro which is already used in other macro definitions > in . > > Fixes: dc64cc7c631

Re: [PATCH net-next] devlink: use _BITUL() macro instead of BIT() in the UAPI header

2020-12-16 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Tue, 15 Dec 2020 11:25:31 +0100 you wrote: > The BIT() macro is not available for the UAPI headers. Moreover, it can > be defined differently in user space headers. Thus, replace its usage > with the _BITUL() macro which is a

[PATCH net-next] devlink: use _BITUL() macro instead of BIT() in the UAPI header

2020-12-15 Thread Tobias Klauser
The BIT() macro is not available for the UAPI headers. Moreover, it can be defined differently in user space headers. Thus, replace its usage with the _BITUL() macro which is already used in other macro definitions in . Fixes: dc64cc7c6310 ("devlink: Add devlink reload limit option") Signed-off-by