Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760533Ab0KRVHj (ORCPT ); Thu, 18 Nov 2010 16:07:39 -0500 Received: from caramon.arm.linux.org.uk ([78.32.30.218]:35796 "EHLO caramon.arm.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759523Ab0KRVHi (ORCPT ); Thu, 18 Nov 2010 16:07:38 -0500 Date: Thu, 18 Nov 2010 21:06:42 +0000 From: Russell King To: Jesper Juhl Cc: Linus Torvalds , linux-scsi@vger.kernel.org, "James E.J. Bottomley" , linux-kernel@vger.kernel.org, Eric Youngdale , "David S. Miller" , Mike Anderson , Andrew Morton Subject: Re: [PATCH][resend][SCSI] Reduce number of sequential pointer derefs in scsi_error.c and reduce size as well Message-ID: <20101118210642.GA24236@flint.arm.linux.org.uk> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1038 Lines: 27 On Thu, Nov 18, 2010 at 09:49:29PM +0100, Jesper Juhl wrote: > @@ -617,10 +623,10 @@ static int scsi_try_bus_device_reset(struct scsi_cmnd *scmd) > > static int __scsi_try_to_abort_cmd(struct scsi_cmnd *scmd) > { > - if (!scmd->device->host->hostt->eh_abort_handler) > - return FAILED; > - > - return scmd->device->host->hostt->eh_abort_handler(scmd); > + struct scsi_host_template *hostt = scmd->device->host->hostt; > + if (!hostt->eh_abort_handler) > + return FAILED; > + return hostt->eh_abort_handler(scmd); Not that I have much to do with SCSI anymore... I spotted the above. Is there any particular reason for using spaces to indent here rather than our usual tabs? -- Russell King Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/ maintainer of: -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/