Commit d7e6db20 authored by Damien Le Moal's avatar Damien Le Moal Committed by Martin K. Petersen

scsi: sd: Improve sd_print_capacity()

There is no need to call twice string_get_size() when the capacity messages
are not going to be printed. Reverse the message output condition to return
early and avoid executing string_get_size() when it is not necessary.
Signed-off-by: default avatarDamien Le Moal <damien.lemoal@wdc.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 27752647
...@@ -2565,25 +2565,25 @@ sd_print_capacity(struct scsi_disk *sdkp, ...@@ -2565,25 +2565,25 @@ sd_print_capacity(struct scsi_disk *sdkp,
int sector_size = sdkp->device->sector_size; int sector_size = sdkp->device->sector_size;
char cap_str_2[10], cap_str_10[10]; char cap_str_2[10], cap_str_10[10];
if (!sdkp->first_scan && old_capacity == sdkp->capacity)
return;
string_get_size(sdkp->capacity, sector_size, string_get_size(sdkp->capacity, sector_size,
STRING_UNITS_2, cap_str_2, sizeof(cap_str_2)); STRING_UNITS_2, cap_str_2, sizeof(cap_str_2));
string_get_size(sdkp->capacity, sector_size, string_get_size(sdkp->capacity, sector_size,
STRING_UNITS_10, cap_str_10, STRING_UNITS_10, cap_str_10, sizeof(cap_str_10));
sizeof(cap_str_10));
if (sdkp->first_scan || old_capacity != sdkp->capacity) { sd_printk(KERN_NOTICE, sdkp,
sd_printk(KERN_NOTICE, sdkp, "%llu %d-byte logical blocks: (%s/%s)\n",
"%llu %d-byte logical blocks: (%s/%s)\n", (unsigned long long)sdkp->capacity,
(unsigned long long)sdkp->capacity, sector_size, cap_str_10, cap_str_2);
sector_size, cap_str_10, cap_str_2);
if (sdkp->physical_block_size != sector_size) if (sdkp->physical_block_size != sector_size)
sd_printk(KERN_NOTICE, sdkp, sd_printk(KERN_NOTICE, sdkp,
"%u-byte physical blocks\n", "%u-byte physical blocks\n",
sdkp->physical_block_size); sdkp->physical_block_size);
sd_zbc_print_zones(sdkp); sd_zbc_print_zones(sdkp);
}
} }
/* called with buffer of length 512 */ /* called with buffer of length 512 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment