From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759303AbXIYRzg (ORCPT ); Tue, 25 Sep 2007 13:55:36 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753297AbXIYRz1 (ORCPT ); Tue, 25 Sep 2007 13:55:27 -0400 Received: from hancock.steeleye.com ([71.30.118.248]:34973 "EHLO hancock.sc.steeleye.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751507AbXIYRz1 (ORCPT ); Tue, 25 Sep 2007 13:55:27 -0400 Subject: [GIT PATCH] SCSI bug fix for 2.6.23-rc8 From: James Bottomley To: Andrew Morton , Linus Torvalds Cc: linux-scsi , linux-kernel Content-Type: text/plain Date: Tue, 25 Sep 2007 12:55:24 -0500 Message-Id: <1190742924.3345.42.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.10.3 (2.10.3-4.fc7) Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org This is, unfortunately, not a recent regression but it's only been recently diagnosed. Apparently the SCSI Parallel transport class domain validation cable width detection wasn't working, leading to cases where controllers with damaged cables would end up hanging the system (the reported one was an aic79xx controller, but the potential is there for all SPI based systems). This bug would *only* affect systems whose cable integrity or connectors were compromised, so it isn't life threatening to every SCSI Parallel installation, but the consequence of running into it is a system hang. The fix is available here: master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git The short changelog is: James Bottomley (1): scsi_transport_spi: fix domain validation failure from incorrect width setting And the diffstat: scsi_transport_spi.c | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) James