]> git.baikalelectronics.ru Git - kernel.git/commit
net: bridge: fix uninitialized variables when BRIDGE_CFM is disabled
authorIvan Vecera <ivecera@redhat.com>
Thu, 28 Oct 2021 15:58:35 +0000 (17:58 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 29 Oct 2021 12:31:32 +0000 (13:31 +0100)
commit57d8c0d023a31ce88137e80339c2e9f0d4d64ee7
tree14b782fe80d7415d427ca754fff65ccf94bcd424
parent3a1a793af5e713fb4920cf48194d0c23568297a7
net: bridge: fix uninitialized variables when BRIDGE_CFM is disabled

Function br_get_link_af_size_filtered() calls br_cfm_{,peer}_mep_count()
that return a count. When BRIDGE_CFM is not enabled these functions
simply return -EOPNOTSUPP but do not modify count parameter and
calling function then works with uninitialized variables.
Modify these inline functions to return zero in count parameter.

Fixes: 2860fe2a2a35 ("bridge: cfm: Netlink Notifications.")
Cc: Henrik Bjoernlund <henrik.bjoernlund@microchip.com>
Signed-off-by: Ivan Vecera <ivecera@redhat.com>
Acked-by: Nikolay Aleksandrov <nikolay@nvidia.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/bridge/br_private.h