diff options
| author | Tomas Krcka <[email protected]> | 2023-03-23 17:43:49 +0000 |
|---|---|---|
| committer | Andrew Morton <[email protected]> | 2023-04-05 19:42:58 -0700 |
| commit | dd31bad21980990d903133d2855ea0e2eccade5e (patch) | |
| tree | 55c115240929c931f96f781737f8cd0a8c690400 | |
| parent | 0173db4f7f526540e2cc0a6a61e42771acd4c197 (diff) | |
mm: be less noisy during memory hotplug
Turn a pr_info() into a pr_debug() to prevent dmesg spamming on systems
where memory hotplug is a frequent operation.
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Tomas Krcka <[email protected]>
Suggested-by: Jan H. Schönherr <[email protected]>
Acked-by: David Hildenbrand <[email protected]>
Reviewed-by: Pasha Tatashin <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
| -rw-r--r-- | mm/mm_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/mm_init.c b/mm/mm_init.c index c88fbe74137c..dd3a6ed9663f 100644 --- a/mm/mm_init.c +++ b/mm/mm_init.c @@ -1086,7 +1086,7 @@ void __ref memmap_init_zone_device(struct zone *zone, compound_nr_pages(altmap, pfns_per_compound)); } - pr_info("%s initialised %lu pages in %ums\n", __func__, + pr_debug("%s initialised %lu pages in %ums\n", __func__, nr_pages, jiffies_to_msecs(jiffies - start)); } #endif |