Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=59b0ed121297b57abb2352bdc8313959e7cb5635
Commit:     59b0ed121297b57abb2352bdc8313959e7cb5635
Parent:     23c15c21d34a4b4b4d7b9a95ce498991c5339c77
Author:     Roland Dreier <[EMAIL PROTECTED]>
AuthorDate: Sat May 19 08:51:58 2007 -0700
Committer:  Roland Dreier <[EMAIL PROTECTED]>
CommitDate: Sat May 19 08:51:58 2007 -0700

    IB/mlx4: Fix check of opcode in mlx4_ib_post_send()
    
    wr->opcode is invalid if it's >= ARRAY_SIZE(mlx4_ib_opcode), not just
    strictly >.
    
    This was spotted by the Coverity checker (CID 1643).
    
    Signed-off-by: Roland Dreier <[EMAIL PROTECTED]>
---
 drivers/infiniband/hw/mlx4/qp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/infiniband/hw/mlx4/qp.c b/drivers/infiniband/hw/mlx4/qp.c
index bd28af5..5706f98 100644
--- a/drivers/infiniband/hw/mlx4/qp.c
+++ b/drivers/infiniband/hw/mlx4/qp.c
@@ -1238,7 +1238,7 @@ int mlx4_ib_post_send(struct ib_qp *ibqp, struct 
ib_send_wr *wr,
                 */
                wmb();
 
-               if (wr->opcode < 0 || wr->opcode > ARRAY_SIZE(mlx4_ib_opcode)) {
+               if (wr->opcode < 0 || wr->opcode >= ARRAY_SIZE(mlx4_ib_opcode)) 
{
                        err = -EINVAL;
                        goto out;
                }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to