Use setup_timer function instead of initializing timer with the
   function and data fields.

Signed-off-by: Allen Pais <allen.l...@gmail.com>
---
 drivers/target/iscsi/iscsi_target_nego.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/target/iscsi/iscsi_target_nego.c 
b/drivers/target/iscsi/iscsi_target_nego.c
index 7a6751f..5b22f01 100644
--- a/drivers/target/iscsi/iscsi_target_nego.c
+++ b/drivers/target/iscsi/iscsi_target_nego.c
@@ -618,10 +618,9 @@ static void iscsi_target_do_login_rx(struct work_struct 
*work)
        conn->login_kworker = current;
        allow_signal(SIGINT);
 
-       init_timer(&login_timer);
+       setup_timer(&login_timer, iscsi_target_login_timeout,
+                   (unsigned long)conn);
        login_timer.expires = (get_jiffies_64() + TA_LOGIN_TIMEOUT * HZ);
-       login_timer.data = (unsigned long)conn;
-       login_timer.function = iscsi_target_login_timeout;
        add_timer(&login_timer);
        pr_debug("Starting login_timer for %s/%d\n", current->comm, 
current->pid);
 
-- 
2.7.4

Reply via email to