From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932848AbdJaTOB (ORCPT ); Tue, 31 Oct 2017 15:14:01 -0400 Received: from mail-pg0-f41.google.com ([74.125.83.41]:53880 "EHLO mail-pg0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753875AbdJaTN6 (ORCPT ); Tue, 31 Oct 2017 15:13:58 -0400 X-Google-Smtp-Source: ABhQp+Qwojgq0RHZxzdFWUQPN42/v43+ukuKBbgmYbYKi6Xtn8Qga0olnoWQsKlFb2OnwcK1mAl3hg== From: Kees Cook To: Himanshu Madhani Cc: Kees Cook , Bart Van Assche , "Martin K. Petersen" , qla2xxx-upstream@qlogic.com, linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 0/4] scsi: qla2xxx: Convert timers to use timer_setup() Date: Tue, 31 Oct 2017 12:13:45 -0700 Message-Id: <1509477229-62141-1-git-send-email-keescook@chromium.org> X-Mailer: git-send-email 2.7.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This breaks out the logical steps to convert the qla2xxx timers: 1) init_timer() -> setup_timer() 2) refactor qla2x00_start_timer() to not pass callback as argument 3) qla2x00_timer() to use timer_setup() 4) qla2x00_sp_timeout() to use timer_setup() The resulting diff is identical to the patch that appears to lock up the driver. This should help identify which step causes this behavior. -Kees