]> git.baikalelectronics.ru Git - kernel.git/commit
i40iw: Fixes for static checker warnings
authorShiraz Saleem <shiraz.saleem@intel.com>
Wed, 19 Jul 2017 18:55:26 +0000 (13:55 -0500)
committerDoug Ledford <dledford@redhat.com>
Fri, 18 Aug 2017 18:01:09 +0000 (14:01 -0400)
commit063e934f503b222a88fc68a992c737785e00a3da
treebd60d443f686e695d4864a577caab564cf6771de
parentbc9ef47f47a4f0da8dea3eef1ee82d8a1c55a8da
i40iw: Fixes for static checker warnings

Remove NULL check for cm_node->listener in i40iw_accept
as listener is always present at this point.

Remove the check for cm_node->accept_pend and related code
in i40iw_cm_event_connected as the cm_node in this context
is only pertinent to active node and cm_node->accept_pend
is always 0.

This fixes the following smatch warnings,

drivers/infiniband/hw/i40iw/i40iw_cm.c:3691 i40iw_accept()
error: we previously assumed 'cm_node->listener' could be null

drivers/infiniband/hw/i40iw/i40iw_cm.c:4061 i40iw_cm_event_connected()
error: we previously assumed 'cm_node->listener' could be null

Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Shiraz Saleem <shiraz.saleem@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/i40iw/i40iw_cm.c