From: Ira Weiny <iwe...@gmail.com>

sdma_select_engine_vl only needs to protect itself from an invalid VL.
Something higher up the stack should be warning the user when they try
to use an SL which maps to an invalid VL.

Reviewed-by: Dean Luick <dean.lu...@intel.com>
Reviewed-by: Mike Marciniszyn <mike.marcinis...@intel.com>
Reviewed-by: Kaike Wan <kaike....@intel.com>
Signed-off-by: Ira Weiny <iwe...@gmail.com>
Signed-off-by: Jubin John <jubin.j...@intel.com>
---
Changes in v2:
        - Removed unlikely() in sdma_select_engine_vl()
Changes in v3:
        - Refreshed patch against latest staging-next

 drivers/staging/rdma/hfi1/sdma.c |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/rdma/hfi1/sdma.c b/drivers/staging/rdma/hfi1/sdma.c
index 90b7072..0710e2a 100644
--- a/drivers/staging/rdma/hfi1/sdma.c
+++ b/drivers/staging/rdma/hfi1/sdma.c
@@ -765,8 +765,14 @@ struct sdma_engine *sdma_select_engine_vl(
        struct sdma_map_elem *e;
        struct sdma_engine *rval;
 
-       if (WARN_ON(vl > 8))
-               return &dd->per_sdma[0];
+       /* NOTE This should only happen if SC->VL changed after the initial
+        *      checks on the QP/AH
+        *      Default will return engine 0 below
+        */
+       if (vl >= num_vls) {
+               rval = NULL;
+               goto done;
+       }
 
        rcu_read_lock();
        m = rcu_dereference(dd->sdma_map);
@@ -778,6 +784,7 @@ struct sdma_engine *sdma_select_engine_vl(
        rval = e->sde[selector & e->mask];
        rcu_read_unlock();
 
+done:
        rval =  !rval ? &dd->per_sdma[0] : rval;
        trace_hfi1_sdma_engine_select(dd, selector, vl, rval->this_idx);
        return rval;
-- 
1.7.1

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to