Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ef1e4d48 authored by Matt Wagantall's avatar Matt Wagantall
Browse files

arm: cpuinfo: drop L1 cache type print from pr_info to pr_debug



This message is printed every time a CPU in hotplugged in,
resulting in log noise and hurting hotplug latency. Silence
it by default, by dropping it to a pr_debug.

Change-Id: I05b643a90abc17e0134830874555e79138237261
Signed-off-by: default avatarMatt Wagantall <mattw@codeaurora.org>
parent 20a5b840
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ static void cpuinfo_detect_icache_policy(struct cpuinfo_arm64 *info)
	if (l1ip == ICACHE_POLICY_AIVIVT)
		set_bit(ICACHEF_AIVIVT, &__icache_flags);

	pr_info("Detected %s I-cache on CPU%d\n", icache_policy_str[l1ip], cpu);
	pr_debug("Detected %s I-cache on CPU%d\n", icache_policy_str[l1ip], cpu);
}

static int check_reg_mask(char *name, u64 mask, u64 boot, u64 cur, int cpu)