]> git.baikalelectronics.ru Git - kernel.git/commit
rtnetlink: Replace implementation of ASSERT_RTNL() macro with WARN_ONCE()
authorLeon Romanovsky <leonro@mellanox.com>
Thu, 21 Dec 2017 09:40:04 +0000 (11:40 +0200)
committerDavid S. Miller <davem@davemloft.net>
Tue, 26 Dec 2017 17:30:02 +0000 (12:30 -0500)
commit644a5dbfc56978eda77af0db23cdb246c842812c
tree3531ee46afa76158dbfefcf7eda42871a3284da4
parentdd4b93dbc8e9197af7dbd08fee9329b57de45b51
rtnetlink: Replace implementation of ASSERT_RTNL() macro with WARN_ONCE()

ASSERT_RTNL() macro is actual open-coded variant of WARN_ONCE() with
two exceptions. First, it prints stack for multiple hits and not only
once as WARN_ONCE() does. Second, the user can disable prints of
WARN_ONCE by setting CONFIG_BUG to N.

The multiple prints of dump stack are actually not needed, because calls
without rtnl lock are programming errors and user can't do anything
about them except to complain to the mailing list after first occurrence
of such failure.

The user who disabled BUG/WARN prints did it explicitly because by default
in upstream kernel and distributions this option is enabled. It means
that user doesn't want to see prints about missing locks too.

This patch replaces open-coded variant in favor of already existing
macro and change error prints to be once only.

Reviewed-by: Mark Bloch <markb@mellanox.com>
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/rtnetlink.h