"Brad House" <brad_mssw _at_ gentoo.org> writes: > > diff -ruN linux-2.6.0-gentoo-r1.old/drivers/scsi/megaraid.c > linux-2.6.0-gentoo-r1/drivers/scsi/megaraid.c > --- linux-2.6.0-gentoo-r1.old/drivers/scsi/megaraid.c 2003-12-29 > 23:51:43.000000000 -0500 > +++ linux-2.6.0-gentoo-r1/drivers/scsi/megaraid.c 2003-12-29 > 23:54:01.005469936 -0500 > @@ -1292,7 +1292,7 @@ > > /* Calculate Scatter-Gather info */ > mbox->m_out.numsgelements = mega_build_sglist(adapter, scb, > - (u32 *)&mbox->m_out.xferaddr, (u32 *)&seg); > + (dma_addr_t *)&mbox->m_out.xferaddr, (u32 *)&seg); I'm pretty sure it's completely broken. You're changing the layout of a data structure that is shared with the firmware. Using a 32bit int here is fine when the driver sets the correct dma mask or only stuffs pci_alloc_consistent() memory in there (i think it's the later here) Even though the driver prints lots of warnings at compile time it actually works on AMD64 as is. But in many cases you should use megaraid2.c instead of megaraid.c. -Andi - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo _at_ vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Follow-Ups:
- Prev by Date: Re: [patch] PCI Express Enhanced Config Patch - 2.6.0-test11
- Next by Date: Re: File change notification
- Previous by thread: RE: [patch] PCI Express Enhanced Config Patch - 2.6.0-test11
- Next by thread: Re: [PATCH 2.6.0] megaraid 64bit fix/cleanup (AMD64)
- Indexes:[Main][Thread]