IB/mlx5: Remove dead code from alloc_cached_mr()
authorRoland Dreier <roland@purestorage.com>
Mon, 27 Jul 2015 21:43:23 +0000 (14:43 -0700)
committerDoug Ledford <dledford@redhat.com>
Sat, 29 Aug 2015 02:54:47 +0000 (22:54 -0400)
commitd6c7276be180fbd0a30cda8fac5c82d483be47b6
tree7eebccae134bf571ce53f8b9911e6d3fbc01cf15
parentd6f1c17e162b2a11e708f28fa93f2f79c164b442
IB/mlx5: Remove dead code from alloc_cached_mr()

The only place that assigns mr inside the loop already does a break.
So "if (mr)" will never be true here since the function initializes mr
to NULL at the top.  We can just drop the extra if and break here.

Signed-off-by: Roland Dreier <roland@purestorage.com>
Acked-by: Eli Cohen <eli@mellanox.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/mlx5/mr.c