diff options
| -rw-r--r-- | drivers/md/md.c | 4 | ||||
| -rw-r--r-- | drivers/md/raid10.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index 2aeb4bf18e84..c8e7a5cb3b32 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -1788,7 +1788,7 @@ static void autorun_array(mddev_t *mddev) err = do_md_run (mddev); if (err) { - printk(KERN_WARNING "md :do_md_run() returned %d\n", err); + printk(KERN_WARNING "md: do_md_run() returned %d\n", err); do_md_stop (mddev, 0); } } @@ -2378,7 +2378,7 @@ static int update_array_info(mddev_t *mddev, mdu_array_info_t *info) /* The "size" is the amount of each device that is used. * This can only make sense for arrays with redundancy. * linear and raid0 always use whatever space is available - * We can only consider changing the size of no resync + * We can only consider changing the size if no resync * or reconstruction is happening, and if the new size * is acceptable. It must fit before the sb_offset or, * if that is <data_offset, it must fit before the diff --git a/drivers/md/raid10.c b/drivers/md/raid10.c index 39dc8d3a29c5..10f850affa27 100644 --- a/drivers/md/raid10.c +++ b/drivers/md/raid10.c @@ -36,7 +36,7 @@ * device of the previous section. * Thus there are (near_copies*far_copies) of each chunk, and each is on a different * drive. - * near_copies and far_copies must be at least one, and there product is at most + * near_copies and far_copies must be at least one, and their product is at most * raid_disks. */ |
