diff options
author | Anton Blanchard <anton@samba.org> | 2014-11-03 20:05:01 -0500 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2014-11-04 06:01:06 -0500 |
commit | 19858e7bdc63e00a401247a17d9f85949b48359d (patch) | |
tree | 7e5f47171bb020a8b599355dba0eb2c1ee5a47c5 | |
parent | 980d0d51b1c9617a472b2c0fcbe33d2d15eadc4c (diff) |
quota: Add log level to printk
JK: Added VFS: prefix to the message when changing it to make it more
standard.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Jan Kara <jack@suse.cz>
-rw-r--r-- | fs/quota/dquot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/quota/dquot.c b/fs/quota/dquot.c index 6b4527216a7f..a180b1d1a6c6 100644 --- a/fs/quota/dquot.c +++ b/fs/quota/dquot.c | |||
@@ -2743,8 +2743,8 @@ static int __init dquot_init(void) | |||
2743 | for (i = 0; i < nr_hash; i++) | 2743 | for (i = 0; i < nr_hash; i++) |
2744 | INIT_HLIST_HEAD(dquot_hash + i); | 2744 | INIT_HLIST_HEAD(dquot_hash + i); |
2745 | 2745 | ||
2746 | printk("Dquot-cache hash table entries: %ld (order %ld, %ld bytes)\n", | 2746 | pr_info("VFS: Dquot-cache hash table entries: %ld (order %ld," |
2747 | nr_hash, order, (PAGE_SIZE << order)); | 2747 | " %ld bytes)\n", nr_hash, order, (PAGE_SIZE << order)); |
2748 | 2748 | ||
2749 | register_shrinker(&dqcache_shrinker); | 2749 | register_shrinker(&dqcache_shrinker); |
2750 | 2750 | ||