Re: [PATCH] vxlan: avoid double unlikely() notation when using IS_ERR()

2020-12-10 Thread David Miller
From: Antonio Quartulli Date: Thu, 10 Dec 2020 09:55:49 +0100 > The definition of IS_ERR() already applies the unlikely() notation > when checking the error status of the passed pointer. For this > reason there is no need to have the same notation outside of > IS_ERR() itself. > > Clean up code

[PATCH] vxlan: avoid double unlikely() notation when using IS_ERR()

2020-12-10 Thread Antonio Quartulli
The definition of IS_ERR() already applies the unlikely() notation when checking the error status of the passed pointer. For this reason there is no need to have the same notation outside of IS_ERR() itself. Clean up code by removing redundant notation. Signed-off-by: Antonio Quartulli --- driv