Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Thu, 6 Feb 2003 15:29:42 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Thu, 6 Feb 2003 15:29:35 -0500 Received: from air-2.osdl.org ([65.172.181.6]:18600 "EHLO mail.osdl.org") by vger.kernel.org with ESMTP id ; Thu, 6 Feb 2003 15:29:03 -0500 Subject: Re: [PATCH 2.5] fix megaraid driver compile error From: Mark Haverkamp To: Linus Torvalds Cc: linux-scsi@vger.kernel.org, linux-kernel In-Reply-To: References: Content-Type: multipart/mixed; boundary="=-XcPf8iw+vAKEM6RsPDTv" Organization: Message-Id: <1044563962.4858.59.camel@markh1.pdx.osdl.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.1 Date: 06 Feb 2003 12:39:22 -0800 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1828 Lines: 60 --=-XcPf8iw+vAKEM6RsPDTv Content-Type: text/plain Content-Transfer-Encoding: 7bit On Thu, 2003-02-06 at 12:04, Linus Torvalds wrote: > On 6 Feb 2003, Mark Haverkamp wrote: > > > > This moves access of the host element to device since host has been > > removed from struct scsi_cmnd. > > This is whitespace-damaged. > > Please fix broken mailers. I generally don't bother to fix up whitespace > damage from people who can't bother to have a good mailer. It's just not > worth it - if I try to fix it up (even if it is often trivial), it just > means that people will continue to send crap patches to me. > > Linus Sorry about the bad patch. Is an attached text file OK? -- Mark Haverkamp --=-XcPf8iw+vAKEM6RsPDTv Content-Disposition: attachment; filename=megaraid.patch Content-Type: text/plain; name=megaraid.patch; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit ===== drivers/scsi/megaraid.c 1.32 vs edited ===== --- 1.32/drivers/scsi/megaraid.c Fri Jan 3 10:58:49 2003 +++ edited/drivers/scsi/megaraid.c Thu Feb 6 10:18:43 2003 @@ -4515,7 +4515,7 @@ if(scsicmd == NULL) return -ENOMEM; memset(scsicmd, 0, sizeof(Scsi_Cmnd)); - scsicmd->host = shpnt; + scsicmd->device->host = shpnt; if( outlen || inlen ) { #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0) @@ -4652,7 +4652,7 @@ if(scsicmd == NULL) return -ENOMEM; memset(scsicmd, 0, sizeof(Scsi_Cmnd)); - scsicmd->host = shpnt; + scsicmd->device->host = shpnt; if (outlen || inlen) { #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0) --=-XcPf8iw+vAKEM6RsPDTv-- - 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/