Printing info about IDENTIFY page used to be the responsibility of ata_dev_read_id(). As all devices are revalidated after xfer mode configuration, this resulted in two info messages about one device. This patch improves ata_dump_id() such that it can be generally useable and makes printing the responsibility of ata_dev_configure() which has better understanding of what's going on. The IDENTIFY info printing now looks like the following. ata2: dev 1 cfg 49:2f00 53:0007 63:0007 64:0003 75:001f 80:00fe 81:0000 82:346b 83:7d01 84:4023 85:3469 86:3c01 87:4023 88:207f 93:0000 Signed-off-by: Tejun Heo <htejun@xxxxxxxxx> --- Jeff, this is slightly improved version which removes unnecessary strlen() in ata_dump_id() as vscnprintf() returns the same value. libata-core.c | 62 ++++++++++++++++++++++++---------------------------------- 1 file changed, 26 insertions(+), 36 deletions(-) diff --git a/drivers/scsi/libata-core.c b/drivers/scsi/libata-core.c index 439b6db..2a2c15e 100644 --- a/drivers/scsi/libata-core.c +++ b/drivers/scsi/libata-core.c @@ -743,40 +743,34 @@ void ata_dev_select(struct ata_port *ap, /** * ata_dump_id - IDENTIFY DEVICE info debugging output * @id: IDENTIFY DEVICE page to dump + * @level: KERN_* message level + * @fmt: header format string + * @...: header string arguments * - * Dump selected 16-bit words from the given IDENTIFY DEVICE - * page. + * Dump selected 16-bit words from the given IDENTIFY DEVICE page + * with the specified header. * * LOCKING: * caller. */ - -static inline void ata_dump_id(const u16 *id) +static void ata_dump_id(const u16 *id, const char *level, const char *fmt, ...) { - DPRINTK("49==0x%04x " - "53==0x%04x " - "63==0x%04x " - "64==0x%04x " - "75==0x%04x \n", - id[49], - id[53], - id[63], - id[64], - id[75]); - DPRINTK("80==0x%04x " - "81==0x%04x " - "82==0x%04x " - "83==0x%04x " - "84==0x%04x \n", - id[80], - id[81], - id[82], - id[83], - id[84]); - DPRINTK("88==0x%04x " - "93==0x%04x\n", - id[88], - id[93]); + va_list ap; + char buf[24]; + int len; + + va_start(ap, fmt); + len = vscnprintf(buf, sizeof(buf), fmt, ap); + va_end(ap); + + printk("%s%s49:%04x 53:%04x 63:%04x 64:%04x 75:%04x 80:%04x 81:%04x 82:%04x\n", + level, buf, + id[49], id[53], id[63], id[64], id[75], id[80], id[81], id[82]); + + memset(buf, ' ', len); + printk("%s%s83:%04x 84:%04x 85:%04x 86:%04x 87:%04x 88:%04x 93:%04x\n", + level, buf, + id[83], id[84], id[85], id[86], id[87], id[88], id[93]); } /** @@ -1120,12 +1114,6 @@ static int ata_dev_read_id(struct ata_po swap_buf_le16(id, ATA_ID_WORDS); - /* print device capabilities */ - printk(KERN_DEBUG "ata%u: dev %u cfg " - "49:%04x 82:%04x 83:%04x 84:%04x 85:%04x 86:%04x 87:%04x 88:%04x\n", - ap->id, dev->devno, - id[49], id[82], id[83], id[84], id[85], id[86], id[87], id[88]); - /* sanity check */ if ((class == ATA_DEV_ATA) != ata_id_is_ata(id)) { rc = -EINVAL; @@ -1204,6 +1192,10 @@ static int ata_dev_configure(struct ata_ DPRINTK("ENTER, host %u, dev %u\n", ap->id, dev->devno); + if (print_info) + ata_dump_id(dev->id, KERN_DEBUG, "ata%u: dev %u cfg ", + ap->id, dev->devno); + /* initialize to-be-configured parameters */ dev->flags = 0; dev->max_sectors = 0; @@ -1227,8 +1219,6 @@ static int ata_dev_configure(struct ata_ /* find max transfer mode; for printk only */ xfer_mask = ata_id_xfermask(dev->id); - ata_dump_id(dev->id); - /* ATA-specific feature tests */ if (dev->class == ATA_DEV_ATA) { dev->n_sectors = ata_id_n_sectors(dev->id); - : send the line "unsubscribe linux-ide" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html