lkml.org 
[lkml]   [2002]   [Aug]   [11]   [last100]   RSS Feed
Views: [more markup]  [less markup]  [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
SubjectRe: 2.5.3[01] does not boot for me
FromOGAWA Hirofumi <>
DateSun, 11 Aug 2002 19:51:21 +0900
Leopold Gouverneur <lgouv@pi.be> writes:

> 2.5.31 hangs during boot after:> > hde 60036480 sectors w/1916 KiB cache CHS=59560/16/63, UDMA(44)
> hde hde1 hde2 hde3 hde4 <> > hde is a  IBM-DTLA-307030 on a HPT366 (Abit BP6) 2.5.29 boot OK
> Sorry if it is a known problem!

Sound like the same problem as me. If so, the following patch should
be solves this problem.

Can you try patch?
-- 
OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>

--- tools/linux-2.5.31/drivers/ide/pcidma.c	2002-08-05 03:01:09.000000000 +0900
+++ ide_pcidma-2.5.31/drivers/ide/pcidma.c	2002-08-11 18:46:42.000000000 +0900
@@ -391,22 +391,20 @@
 	sg = ch->sg_table;
 	while (i--) {
 		u32 cur_addr = sg_dma_address(sg);
-		u32 cur_len = sg_dma_len(sg) & 0xffff;
+		u32 cur_len = sg_dma_len(sg);
 
 		/* Delete this test after linux ~2.5.35, as we care
 		   about performance in this loop. */
 		BUG_ON(cur_len > ch->max_segment_size);
 
 		*table++ = cpu_to_le32(cur_addr);
-		*table++ = cpu_to_le32(cur_len);
+		*table++ = cpu_to_le32(cur_len & 0xffff);
 
 		sg++;
 	}
 
-#ifdef CONFIG_BLK_DEV_TRM290
-	if (ch->chipset == ide_trm290)
+	if (ch->chipset != ide_trm290)
 		*--table |= cpu_to_le32(0x80000000);
-#endif
 
 	return ch->sg_nents;
 }
-
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/
\
 
 \ /
  Last update: 2005-03-22 12:22    [W:0.060 / U:2.620 seconds]
©2003-2008 Jasper Spaans