Skip to content

Commit

Permalink
[PATCH] libata: re-initialize parameters before configuring
Browse files Browse the repository at this point in the history
In ata_dev_configure(), reinitialize parameters before configuring.
This change is for revalidation and hotplug.  As ata_dev_configure()
can be entered multiple times, parameters need to be reinitialized.

Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
  • Loading branch information
Tejun Heo authored and Jeff Garzik committed Mar 5, 2006
1 parent e653a1e commit 208a993
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions drivers/scsi/libata-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1086,6 +1086,15 @@ static int ata_dev_configure(struct ata_port *ap, struct ata_device *dev)

DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno);

/* initialize to-be-configured parameters */
dev->flags = 0;
dev->max_sectors = 0;
dev->cdb_len = 0;
dev->n_sectors = 0;
dev->cylinders = 0;
dev->heads = 0;
dev->sectors = 0;

/*
* common ATA, ATAPI feature tests
*/
Expand Down

0 comments on commit 208a993

Please sign in to comment.