From: Alan Cox <alan@lxorguk.ukuu.org.uk>
To: Andries Brouwer <aebr@win.tue.nl>
Cc: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>,
torvalds@osdl.org,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: PATCH: 2.6.10 - Still mishandles volumes without geometry data
Date: Wed, 29 Dec 2004 14:36:11 +0000 [thread overview]
Message-ID: <1104330967.30080.12.camel@localhost.localdomain> (raw)
In-Reply-To: <20041229025212.GA2818@pclin040.win.tue.nl>
On Mer, 2004-12-29 at 02:52, Andries Brouwer wrote:
> > + /* No non-LBA info .. so valid! */
> > + if (id->cyls == 0)
> > + return 1;
> > +
> > /*
> > * The ATA spec tells large drives to return
> > * C/H/S = 16383/16/63 independent of their size.
>
> Reasonable in case this actually occurs. Do you have examples?
Yes - raid volumes on IT8212 is one such example.
> > - pr_debug("%s: CHS=%u/%u/%u\n", drive->name, cyl, head, sect);
> > + if(cyl)
> > + pr_debug("%s: CHS=%u/%u/%u\n", drive->name, cyl, head, sect);
> >
> > hwif->OUTB(0x00, IDE_FEATURE_REG);
> > hwif->OUTB(nsectors.b.low, IDE_NSECTOR_REG);
>
> Unreasonable. This part must be a misunderstanding.
> The cyl here is not the number of cylinders of a disk,
Yep - as Bartlomiej correctly noted this was a mismerge when I fixed up
to 2.6.10
> > - printk(", CHS=%d/%d/%d",
> > - drive->bios_cyl, drive->bios_head, drive->bios_sect);
> > + if(drive->bios_cyl)
> > + printk(", CHS=%d/%d/%d",
> > + drive->bios_cyl, drive->bios_head, drive->bios_sect);
> > if (drive->using_dma)
> > ide_dma_verbose(drive);
> > printk("\n");
>
> Reasonable. (But s/if(/if (/ .)
> On the other hand, I like the "CHS=0/0/0" - it makes very clear what is wrong
> in case lilo or so has geometry problems.
0/0/0 is valid in these cases - would it be better if it printed
something else instead for that situation ("No physical geometry, ")
perhaps ?
next prev parent reply other threads:[~2004-12-29 15:40 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-12-27 13:57 PATCH: 2.6.10 - Still mishandles volumes without geometry data Alan Cox
2004-12-28 20:48 ` Bartlomiej Zolnierkiewicz
2004-12-28 22:03 ` Alan Cox
2004-12-28 22:08 ` Alan Cox
2004-12-29 2:52 ` Andries Brouwer
2004-12-29 14:36 ` Alan Cox [this message]
2004-12-29 19:28 ` Andries Brouwer
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=1104330967.30080.12.camel@localhost.localdomain \
--to=alan@lxorguk.ukuu.org.uk \
--cc=aebr@win.tue.nl \
--cc=bzolnier@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@osdl.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox