commit | 6b63e3015a69dd8aa5534e23af9f132a021da02e | [log] [tgz] |
---|---|---|
author | Roland Dreier <rolandd@cisco.com> | Mon Mar 20 10:08:25 2006 -0800 |
committer | Roland Dreier <rolandd@cisco.com> | Mon Mar 20 10:08:25 2006 -0800 |
tree | 58c8ffeaf4a46e4ac5af98ebbaae7543c43561a9 | |
parent | 048975ac580a771fc5bb96c6b454cba897ab1a73 [diff] |
IB/mthca: Coverity fix to mthca_init_eq_table() Fix bug found by coverity: the loop body never executed, because it was doing for (i = 0; i < MTHCA_EQ_CMD; ++i), but MTHCA_EQ_CMD is 0. The correct loop bound is MTHCA_NUM_EQ, to loop over all EQs. Signed-off-by: Roland Dreier <rolandd@cisco.com>