aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md
diff options
context:
space:
mode:
authorJonathan Brassow <jbrassow@redhat.com>2011-06-07 18:48:35 -0400
committerNeilBrown <neilb@suse.de>2011-06-08 01:11:31 -0400
commitac42450c7c814769bee963ae4b897c149bb0ab53 (patch)
tree582225e700c0a9eb0f99959f4f797a418a47ddc3 /drivers/md
parent68866e425be2ef2664aa5c691bb3ab789736acf5 (diff)
MD: possible typo
Make message a bit clearer by s/blocks/k/ I chose 'k' vs 'kiB' or 'kB' because it is what is used earlier in the message. 'k' may be a bit ambigous, but I think it's better than "blocks" which normally means 512, but means 1024 in MD. Signed-off-by: Jonathan Brassow <jbrassow@redhat.com> Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/md.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c
index 4fa915a21d0d..3715e89dcaae 100644
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -6866,8 +6866,8 @@ void md_do_sync(mddev_t *mddev)
6866 * Tune reconstruction: 6866 * Tune reconstruction:
6867 */ 6867 */
6868 window = 32*(PAGE_SIZE/512); 6868 window = 32*(PAGE_SIZE/512);
6869 printk(KERN_INFO "md: using %dk window, over a total of %llu blocks.\n", 6869 printk(KERN_INFO "md: using %dk window, over a total of %lluk.\n",
6870 window/2,(unsigned long long) max_sectors/2); 6870 window/2, (unsigned long long)max_sectors/2);
6871 6871
6872 atomic_set(&mddev->recovery_active, 0); 6872 atomic_set(&mddev->recovery_active, 0);
6873 last_check = 0; 6873 last_check = 0;