diff options
author | Kees Cook <keescook@chromium.org> | 2017-10-16 15:54:11 -0700 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-10-18 11:48:34 -0400 |
commit | 051947b3b2a2c8487affafaf86587770e1048b78 (patch) | |
tree | e74e8e31f261c69a4fc95a506d7a7f5aa43d5146 /drivers/infiniband/hw/cxgb3/iwch_provider.h | |
parent | 8064135e8a758f0db9a24dac0157c47f9bdb1c13 (diff) | |
download | talos-obmc-linux-051947b3b2a2c8487affafaf86587770e1048b78.tar.gz talos-obmc-linux-051947b3b2a2c8487affafaf86587770e1048b78.zip |
RDMA/cxgb3: Convert timers to use timer_setup()
In preparation for unconditionally passing the struct timer_list pointer to
all timer callbacks, switch to using the new timer_setup() and from_timer()
to pass the timer pointer explicitly. Also removes an unused timer.
Cc: Steve Wise <swise@chelsio.com>
Cc: Doug Ledford <dledford@redhat.com>
Cc: Sean Hefty <sean.hefty@intel.com>
Cc: Hal Rosenstock <hal.rosenstock@gmail.com>
Cc: linux-rdma@vger.kernel.org
Signed-off-by: Kees Cook <keescook@chromium.org>
Acked-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/hw/cxgb3/iwch_provider.h')
-rw-r--r-- | drivers/infiniband/hw/cxgb3/iwch_provider.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/cxgb3/iwch_provider.h b/drivers/infiniband/hw/cxgb3/iwch_provider.h index 9e216edec4c0..2e38ddefea8a 100644 --- a/drivers/infiniband/hw/cxgb3/iwch_provider.h +++ b/drivers/infiniband/hw/cxgb3/iwch_provider.h @@ -168,7 +168,6 @@ struct iwch_qp { atomic_t refcnt; wait_queue_head_t wait; enum IWCH_QP_FLAGS flags; - struct timer_list timer; }; static inline int qp_quiesced(struct iwch_qp *qhp) |