diff options
author | Nick Andrew <nick@nick-andrew.net> | 2008-04-28 05:15:55 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:42 -0400 |
commit | d7a420c9472a95c46600a0345434b7b166e0b9c7 (patch) | |
tree | b95005ce8ab92efdb5cd04b3d85c3b01a0455ebc /drivers/md/raid1.c | |
parent | 4ef197d87ad7d4bb326de3e9b8ecbb26f9e86253 (diff) |
raid: remove leading TAB on printk messages
MD drivers use one printk() call to print 2 log messages and the second line
may be prefixed by a TAB character. It may also output a trailing space
before newline. klogd (I think) turns the TAB character into the 2 characters
'^I' when logging to a file. This looks ugly.
Instead of a leading TAB to indicate continuation, prefix both output lines
with 'raid:' or similar. Also remove any trailing space in the vicinity of
the affected code and consistently end the sentences with a period.
Signed-off-by: Nick Andrew <nick@nick-andrew.net>
Cc: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/md/raid1.c')
-rw-r--r-- | drivers/md/raid1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c index ff61b309129a..9fd473a6dbf5 100644 --- a/drivers/md/raid1.c +++ b/drivers/md/raid1.c | |||
@@ -1008,8 +1008,8 @@ static void error(mddev_t *mddev, mdk_rdev_t *rdev) | |||
1008 | } else | 1008 | } else |
1009 | set_bit(Faulty, &rdev->flags); | 1009 | set_bit(Faulty, &rdev->flags); |
1010 | set_bit(MD_CHANGE_DEVS, &mddev->flags); | 1010 | set_bit(MD_CHANGE_DEVS, &mddev->flags); |
1011 | printk(KERN_ALERT "raid1: Disk failure on %s, disabling device. \n" | 1011 | printk(KERN_ALERT "raid1: Disk failure on %s, disabling device.\n" |
1012 | " Operation continuing on %d devices\n", | 1012 | "raid1: Operation continuing on %d devices.\n", |
1013 | bdevname(rdev->bdev,b), conf->raid_disks - mddev->degraded); | 1013 | bdevname(rdev->bdev,b), conf->raid_disks - mddev->degraded); |
1014 | } | 1014 | } |
1015 | 1015 | ||