Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 26 Aug 2003 22:35:04 -0600
From:      <soralx@cydem.org.ua>
To:        freebsd-hackers@freebsd.org
Subject:   Re: Bug FreeBSD 4.8 ATA driver
Message-ID:  <200308262235.04826.soralx@cydem.org.ua>
In-Reply-To: <3F4C29BB.4070005@obluda.cz>
References:  <Pine.LNX.4.44.0308200130120.12189-100000@artax.karlin.mff.cuni.cz> <3F4C29BB.4070005@obluda.cz>

next in thread | previous in thread | raw e-mail | index | archive | help

> > I am reading FreeBSD ATA drivers because I want to use them as base for
> > my ATA driver and I found a total nonsence: in ata-dma.c in FreeBSD 4.8,
> > there is line
> >
> > if (!((pci_read_config(parent,0x40,4)>>(ch->unit<<8))&0x4000)) {
> >
> > if ch->unit is 1, config word is shifted by 256 bytes, which gives
> > undefined result in C. How was this meant? What should it do?
>
> 	Hm, it should be (IMHO)
> if (!((pci_read_config(parent,0x40,4)>>(ch->unit<<5))&0x4000))
>
> 	but I can't verify it as have no access to documentation for PIIX3 nor
> acces to the PIIX3 hardware now.

I have PIIX3 contorller on a machine with FreeBSD 4.8-RELEASE; I am willing to
test whatever needed.

26.08.2003; 22:32:58
[SorAlx]  http://cydem.org.ua/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200308262235.04826.soralx>