You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
IB/ipoib: Remove double pointer assigning
There is no need to assign "p" pointer twice.
This patch fixes the following smatch warning:
drivers/infiniband/ulp/ipoib/ipoib_cm.c:517 ipoib_cm_rx_handler() warn:
missing break? reassigning 'p->id'
Fixes: 839fcaba35 ("IPoIB: Connected mode experimental support")
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
This commit is contained in:
@@ -511,7 +511,6 @@ static int ipoib_cm_rx_handler(struct ib_cm_id *cm_id,
|
||||
case IB_CM_REQ_RECEIVED:
|
||||
return ipoib_cm_req_handler(cm_id, event);
|
||||
case IB_CM_DREQ_RECEIVED:
|
||||
p = cm_id->context;
|
||||
ib_send_cm_drep(cm_id, NULL, 0);
|
||||
/* Fall through */
|
||||
case IB_CM_REJ_RECEIVED:
|
||||
|
||||
Reference in New Issue
Block a user