From: Sergei Shtylyov <sshtylyov@ru.mvista.com>
To: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Cc: linux-ide@vger.kernel.org,
"Andries E. Brouwer" <Andries.Brouwer@cwi.nl>,
linux-kernel@vger.kernel.org,
Robert Hancock <hancockrwd@gmail.com>,
Al Viro <viro@zeniv.linux.org.uk>, Frans Pop <elendil@planet.nl>
Subject: Re: [PATCH 3/4] ide-gd: implement block device ->set_capacity method
Date: Tue, 02 Jun 2009 22:55:56 +0400 [thread overview]
Message-ID: <4A2575BC.9000805@ru.mvista.com> (raw)
In-Reply-To: <200906012332.31628.bzolnier@gmail.com>
Hello.
Bartlomiej Zolnierkiewicz wrote:
>>From: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
>>Subject: [PATCH] ide-gd: implement block device ->set_capacity method
>>* Use ->probed_capacity to store native device capacity for ATA disks.
>>* Add ->set_capacity method to struct ide_disk_ops.
>>* Implement disk device ->set_capacity method for ATA disks.
>>* Implement block device ->set_capacity method.
>>Together with the previous patch adding ->set_capacity block device
>>method this allows automatic disabling of Host Protected Area (HPA)
>>if any partitions overlapping HPA are detected.
>>Cc: Robert Hancock <hancockrwd@gmail.com>
>>Cc: Frans Pop <elendil@planet.nl>
>>Cc: "Andries E. Brouwer" <Andries.Brouwer@cwi.nl>
>>Cc: Al Viro <viro@zeniv.linux.org.uk>
>>Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
> v2 interdiff
> v2:
> * Check if LBA and HPA are supported in ide_disk_set_capacity().
> * According to the spec the SET MAX ADDRESS command shall be
> immediately preceded by a READ NATIVE MAX ADDRESS command.
> * Add ide_disk_hpa_{get_native,set}_capacity() helpers.
One of them seem to me pretty useless...
> diff -u b/drivers/ide/ide-disk.c b/drivers/ide/ide-disk.c
> --- b/drivers/ide/ide-disk.c
> +++ b/drivers/ide/ide-disk.c
> @@ -302,14 +302,12 @@
> { NULL, NULL }
> };
>
> -static void idedisk_check_hpa(ide_drive_t *drive)
> +static u64 ide_disk_hpa_get_native_capacity(ide_drive_t *drive, int lba48)
Frankly speaking, I don't see what you've bought with factoring out this
function...
> {
> - unsigned long long capacity, set_max;
> - int lba48 = ata_id_lba48_enabled(drive->id);
> + u64 capacity, set_max;
>
> capacity = drive->capacity64;
> -
> - set_max = idedisk_read_native_max_address(drive, lba48);
> + set_max = idedisk_read_native_max_address(drive, lba48);
>
> if (ide_in_drive_list(drive->id, hpa_list)) {
> /*
> @@ -320,6 +318,26 @@
> set_max--;
> }
>
> + return set_max;
> +}
> +
> +static u64 ide_disk_hpa_set_capacity(ide_drive_t *drive, u64 set_max, int lba48)
> +{
> + set_max = idedisk_set_max_address(drive, set_max, lba48);
> + if (set_max)
> + drive->capacity64 = set_max;
> +
> + return set_max;
> +}
> +
> +static void idedisk_check_hpa(ide_drive_t *drive)
> +{
> + u64 capacity, set_max;
> + int lba48 = ata_id_lba48_enabled(drive->id);
> +
> + capacity = drive->capacity64;
> + set_max = ide_disk_hpa_get_native_capacity(drive, lba48);
> +
> if (set_max <= capacity)
> return;
>
> @@ -332,13 +350,10 @@
> capacity, sectors_to_MB(capacity),
> set_max, sectors_to_MB(set_max));
>
> - set_max = idedisk_set_max_address(drive, set_max, lba48);
> -
> - if (set_max) {
> - drive->capacity64 = set_max;
> + set_max = ide_disk_hpa_set_capacity(drive, set_max, lba48);
> + if (set_max)
> printk(KERN_INFO "%s: Host Protected Area disabled.\n",
> drive->name);
> - }
> }
>
> static int ide_disk_get_capacity(ide_drive_t *drive)
> @@ -399,12 +414,25 @@
> static u64 ide_disk_set_capacity(ide_drive_t *drive, u64 capacity)
> {
> u64 set = min(capacity, drive->probed_capacity);
> - int lba48 = ata_id_lba48_enabled(drive->id);
> -
> - capacity = idedisk_set_max_address(drive, set, lba48);
> - if (capacity)
> - drive->capacity64 = capacity;
> + u16 *id = drive->id;
> + int lba48 = ata_id_lba48_enabled(id);
>
> + if ((drive->dev_flags & IDE_DFLAG_LBA) == 0 ||
> + ata_id_hpa_enabled(id) == 0)
> + goto out;
> +
> + /*
> + * according to the spec the SET MAX ADDRESS command shall be
> + * immediately preceded by a READ NATIVE MAX ADDRESS command
> + */
> + capacity = ide_disk_hpa_get_native_capacity(drive, lba48);
Might as well just call idedisk_read_native_max_address() -- we don't
need to lookup hpa_list[] if we're only checking whether we can read native
max address or not afterwards:
> + if (capacity == 0)
> + goto out;
> +
> + set = ide_disk_hpa_set_capacity(drive, set, lba48);
> + if (set)
> + return set;
Why bother doing that again if the function itself does such check and
sets drive->capacity64 to the returned value on success? It should be as
simple as:
ide_disk_hpa_set_capacity(drive, set, lba48);
> +out:
> return drive->capacity64;
> }
Label/gotos unnecessary in this case -- we have *return*...
MBR, Sergei
next prev parent reply other threads:[~2009-06-02 18:54 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-31 14:39 [PATCH 0/4] partitions/ide: improve Host Protected Area handling Bartlomiej Zolnierkiewicz
2009-05-31 14:39 ` [PATCH 1/4] partitions: warn about the partition exceeding device capacity Bartlomiej Zolnierkiewicz
2009-05-31 14:39 ` [PATCH 2/4] partitions: add ->set_capacity block device method Bartlomiej Zolnierkiewicz
2009-06-06 8:42 ` Al Viro
2009-05-31 14:39 ` [PATCH 3/4] ide-gd: implement block device ->set_capacity method Bartlomiej Zolnierkiewicz
2009-06-01 21:32 ` Bartlomiej Zolnierkiewicz
2009-06-02 18:55 ` Sergei Shtylyov [this message]
2009-06-05 18:38 ` Bartlomiej Zolnierkiewicz
2009-05-31 14:39 ` [PATCH 4/4] ide: preserve Host Protected Area by default Bartlomiej Zolnierkiewicz
2009-06-01 21:33 ` Bartlomiej Zolnierkiewicz
2009-06-02 19:12 ` Sergei Shtylyov
2009-05-31 15:24 ` [PATCH 0/4] partitions/ide: improve Host Protected Area handling Andries E. Brouwer
2009-05-31 15:34 ` Bartlomiej Zolnierkiewicz
2009-06-01 13:02 ` Greg Freemyer
2009-05-31 16:36 ` Alan Cox
2009-05-31 20:04 ` Frans Pop
2009-05-31 22:50 ` Andries E. Brouwer
2009-06-01 12:59 ` Greg Freemyer
2009-06-01 13:06 ` Alan Cox
2009-06-01 22:00 ` Bartlomiej Zolnierkiewicz
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=4A2575BC.9000805@ru.mvista.com \
--to=sshtylyov@ru.mvista.com \
--cc=Andries.Brouwer@cwi.nl \
--cc=bzolnier@gmail.com \
--cc=elendil@planet.nl \
--cc=hancockrwd@gmail.com \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=viro@zeniv.linux.org.uk \
/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;
as well as URLs for NNTP newsgroup(s).