aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide
diff options
context:
space:
mode:
authorFrans Pop <elendil@planet.nl>2009-06-23 16:02:58 -0700
committerDavid S. Miller <davem@davemloft.net>2009-06-24 00:32:31 -0700
commitd9ae62433e46909fc9e7d97ce74202c2851667b8 (patch)
tree3d567816d2791e31e2fcfd53c54e2ea90223a69e /drivers/ide
parentide-cd: Don't warn on bogus block size unless it actually matters. (diff)
downloadlinux-dev-d9ae62433e46909fc9e7d97ce74202c2851667b8.tar.xz
linux-dev-d9ae62433e46909fc9e7d97ce74202c2851667b8.zip
ide-cd: Improve "weird block size" error message
Currently the error gets repeated too frequently, for example each time HAL polls the device when a disc is present. Avoid that by using printk_once instead of printk. Also join the error and corrective action messages into a single line. Signed-off-by: Frans Pop <elendil@planet.nl> Acked-by: Borislav Petkov <petkovbb@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/ide')
-rw-r--r--drivers/ide/ide-cd.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/ide/ide-cd.c b/drivers/ide/ide-cd.c
index a9a1bfb14e7c..f0ede5953af8 100644
--- a/drivers/ide/ide-cd.c
+++ b/drivers/ide/ide-cd.c
@@ -889,10 +889,9 @@ static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity,
case 4096:
break;
default:
- printk(KERN_ERR PFX "%s: weird block size %u\n",
+ printk_once(KERN_ERR PFX "%s: weird block size %u; "
+ "setting default block size to 2048\n",
drive->name, blocklen);
- printk(KERN_ERR PFX "%s: default to 2kb block size\n",
- drive->name);
blocklen = 2048;
break;
}