]> git.karo-electronics.de Git - karo-tx-linux.git/commit
IB/rdmavt: Setting of QP timeout can overflow jiffies computation
authorKaike Wan <kaike.wan@intel.com>
Sat, 17 Jun 2017 17:37:26 +0000 (10:37 -0700)
committerDoug Ledford <dledford@redhat.com>
Thu, 20 Jul 2017 15:20:50 +0000 (11:20 -0400)
commita25ce4270bfdd522207b02f81a594c7d1746b697
tree1abc324af4c736e444135f1c6aa0f97201611048
parent266098b841d48f7f0db40424bdbc072e4db14e9b
IB/rdmavt: Setting of QP timeout can overflow jiffies computation

Current computation of qp->timeout_jiffies in rvt_modify_qp() will cause
overflow due to the fact that the input to the function usecs_to_jiffies
is only 32-bit ( unsigned int). Overflow will occur when attr->timeout is
equal to or greater than 30. The consequence is unnecessarily excessive
retry and thus degradation of the system performance.

This patch fixes the problem by limiting the input to 5-bit and calling
usecs_to_jiffies() before multiplying the scaling factor.

Reviewed-by: Mike Marciniszyn <mike.marciniszyn@intel.com>
Signed-off-by: Kaike Wan <kaike.wan@intel.com>
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/sw/rdmavt/qp.c
include/rdma/rdmavt_qp.h