06/09/2021 17:54, Vladimir Medvedkin:
> Fixes: 03b8372a9a73 ("rib: fix max depth IPv6 lookup")
> Cc: [email protected]
> Cc: [email protected]
>
> Signed-off-by: Vladimir Medvedkin <[email protected]>An explanation would have been appreciated. > - index = (depth & (UINT8_MAX - 1)) / CHAR_BIT; > + index = (depth & INT8_MAX) / CHAR_BIT; Applied, thanks.

