diff options
author | Dan Streetman <ddstreet@ieee.org> | 2015-06-25 18:00:37 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-06-25 20:00:37 -0400 |
commit | cf41f5f496d68f2ced1fc77871c63d1c526fa100 (patch) | |
tree | 1efd5286cb6930ffd15d9eda0e35768d51e16bbe /mm | |
parent | c00ed16a9eb98a7fc076e227bdd95c1451ca1e6e (diff) |
zpool: change pr_info to pr_debug
Change the pr_info() calls to pr_debug(). There's no need for the extra
verbosity in the log. Also change the msg formats to be consistent.
Signed-off-by: Dan Streetman <ddstreet@ieee.org>
Cc: Kees Cook <keescook@chromium.org>
Cc: Minchan Kim <minchan@kernel.org>
Cc: Ganesh Mahendran <opensource.ganesh@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/zpool.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mm/zpool.c b/mm/zpool.c index bacdab6e47de..6b1f1035cd99 100644 --- a/mm/zpool.c +++ b/mm/zpool.c | |||
@@ -147,7 +147,7 @@ struct zpool *zpool_create_pool(char *type, char *name, gfp_t gfp, | |||
147 | struct zpool_driver *driver; | 147 | struct zpool_driver *driver; |
148 | struct zpool *zpool; | 148 | struct zpool *zpool; |
149 | 149 | ||
150 | pr_info("creating pool type %s\n", type); | 150 | pr_debug("creating pool type %s\n", type); |
151 | 151 | ||
152 | driver = zpool_get_driver(type); | 152 | driver = zpool_get_driver(type); |
153 | 153 | ||
@@ -180,7 +180,7 @@ struct zpool *zpool_create_pool(char *type, char *name, gfp_t gfp, | |||
180 | return NULL; | 180 | return NULL; |
181 | } | 181 | } |
182 | 182 | ||
183 | pr_info("created %s pool\n", type); | 183 | pr_debug("created pool type %s\n", type); |
184 | 184 | ||
185 | spin_lock(&pools_lock); | 185 | spin_lock(&pools_lock); |
186 | list_add(&zpool->list, &pools_head); | 186 | list_add(&zpool->list, &pools_head); |
@@ -202,7 +202,7 @@ struct zpool *zpool_create_pool(char *type, char *name, gfp_t gfp, | |||
202 | */ | 202 | */ |
203 | void zpool_destroy_pool(struct zpool *zpool) | 203 | void zpool_destroy_pool(struct zpool *zpool) |
204 | { | 204 | { |
205 | pr_info("destroying pool type %s\n", zpool->type); | 205 | pr_debug("destroying pool type %s\n", zpool->type); |
206 | 206 | ||
207 | spin_lock(&pools_lock); | 207 | spin_lock(&pools_lock); |
208 | list_del(&zpool->list); | 208 | list_del(&zpool->list); |