diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-10-17 18:49:23 +0300 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-10-19 13:01:30 +0300 |
commit | fae7fb299f382355145c6cb4eec6aa84f4cd1fca (patch) | |
tree | dc42bdf9bdd8c4ffc9e2129d5702db3a9b16fc05 /fs | |
parent | 727d2dc045930b29dc68d56d5032d23661ba8503 (diff) | |
download | linux-fae7fb299f382355145c6cb4eec6aa84f4cd1fca.tar.bz2 |
UBIFS: amend printk
It is better to print "Reserved for root" than
"Reserved pool size", because it is more obvious for users
what this means.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ubifs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index 7fd759dde796..046bf0879235 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c @@ -1217,7 +1217,7 @@ static int mount_ubifs(struct ubifs_info *c) ubifs_msg("media format: %d (latest is %d)", c->fmt_version, UBIFS_FORMAT_VERSION); ubifs_msg("default compressor: %s", ubifs_compr_name(c->default_compr)); - ubifs_msg("reserved pool size: %llu bytes (%llu KiB)", + ubifs_msg("reserved for root: %llu bytes (%llu KiB)", c->report_rp_size, c->report_rp_size >> 10); dbg_msg("compiled on: " __DATE__ " at " __TIME__); |