All of lore.kernel.org
 help / color / mirror / Atom feed
From: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
To: Leopold Gouverneur <lgouv@pi.be>
Cc: linux-kernel@vger.kernel.org
Subject: Re: 2.5.3[01] does not boot for me
Date: Sun, 11 Aug 2002 19:51:21 +0900	[thread overview]
Message-ID: <87it2h7jo6.fsf@devron.myhome.or.jp> (raw)
In-Reply-To: <20020811081929.GA693@gouv>

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;
 }

      parent reply	other threads:[~2002-08-11 10:47 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-08-11  8:19 2.5.3[01] does not boot for me Leopold Gouverneur
2002-08-11  9:18 ` Alexander Viro
2002-08-11 10:39 ` OGAWA Hirofumi
2002-08-11 10:51 ` OGAWA Hirofumi [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87it2h7jo6.fsf@devron.myhome.or.jp \
    --to=hirofumi@mail.parknet.co.jp \
    --cc=lgouv@pi.be \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.