diff options
author | Kees Cook <keescook@chromium.org> | 2017-08-28 19:13:50 +0200 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2017-11-01 19:27:05 +0100 |
commit | cd07f958e88250e39c3e8b0a93ac17165d483fd3 (patch) | |
tree | 3230790cb4f17a6927746e715414a60d0f4cfbd2 /drivers/scsi/cxgbi/libcxgbi.c | |
parent | scsi: csiostor: Convert timers to use timer_setup() (diff) | |
download | linux-cd07f958e88250e39c3e8b0a93ac17165d483fd3.tar.xz linux-cd07f958e88250e39c3e8b0a93ac17165d483fd3.zip |
scsi: cxgbi: 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.
Cc: Karen Xie <kxie@chelsio.com>
Cc: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
Cc: "Martin K. Petersen" <martin.petersen@oracle.com>
Cc: linux-scsi@vger.kernel.org
Signed-off-by: Kees Cook <keescook@chromium.org>
Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/cxgbi/libcxgbi.c')
-rw-r--r-- | drivers/scsi/cxgbi/libcxgbi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/cxgbi/libcxgbi.c b/drivers/scsi/cxgbi/libcxgbi.c index 512c8f1ea5b0..a61a152136a3 100644 --- a/drivers/scsi/cxgbi/libcxgbi.c +++ b/drivers/scsi/cxgbi/libcxgbi.c @@ -572,7 +572,7 @@ static struct cxgbi_sock *cxgbi_sock_create(struct cxgbi_device *cdev) kref_init(&csk->refcnt); skb_queue_head_init(&csk->receive_queue); skb_queue_head_init(&csk->write_queue); - setup_timer(&csk->retry_timer, NULL, (unsigned long)csk); + timer_setup(&csk->retry_timer, NULL, 0); rwlock_init(&csk->callback_lock); csk->cdev = cdev; csk->flags = 0; |