Suppress overly verbose log spam

It's hard to see anything that's actually useful with so much verbose
spam in the log buffer.

Signed-off-by: Danny Lin <danny@kdrag0n.dev>
This commit is contained in:
Danny Lin 2020-11-01 16:58:55 -08:00 committed by spakkkk
parent 67d7e0a712
commit 0e4c247c72
7 changed files with 11 additions and 11 deletions

View File

@ -334,7 +334,7 @@ static void cpuinfo_detect_icache_policy(struct cpuinfo_arm64 *info)
set_bit(ICACHEF_ALIASING, &__icache_flags); set_bit(ICACHEF_ALIASING, &__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 void __cpuinfo_store_cpu(struct cpuinfo_arm64 *info) static void __cpuinfo_store_cpu(struct cpuinfo_arm64 *info)

View File

@ -98,7 +98,7 @@ static int cpu_psci_cpu_kill(unsigned int cpu)
do { do {
err = psci_ops.affinity_info(cpu_logical_map(cpu), 0); err = psci_ops.affinity_info(cpu_logical_map(cpu), 0);
if (err == PSCI_0_2_AFFINITY_LEVEL_OFF) { if (err == PSCI_0_2_AFFINITY_LEVEL_OFF) {
pr_info("CPU%d killed (polled %d ms)\n", cpu, pr_debug("CPU%d killed (polled %d ms)\n", cpu,
jiffies_to_msecs(jiffies - start)); jiffies_to_msecs(jiffies - start));
return 0; return 0;
} }

View File

@ -243,7 +243,7 @@ asmlinkage notrace void secondary_start_kernel(void)
* the CPU migration code to notice that the CPU is online * the CPU migration code to notice that the CPU is online
* before we continue. * before we continue.
*/ */
pr_info("CPU%u: Booted secondary processor 0x%010lx [0x%08x]\n", pr_debug("CPU%u: Booted secondary processor 0x%010lx [0x%08x]\n",
cpu, (unsigned long)mpidr, cpu, (unsigned long)mpidr,
read_cpuid_id()); read_cpuid_id());
update_cpu_boot_status(CPU_BOOT_SUCCESS); update_cpu_boot_status(CPU_BOOT_SUCCESS);
@ -332,7 +332,7 @@ void __cpu_die(unsigned int cpu)
pr_crit("CPU%u: cpu didn't die\n", cpu); pr_crit("CPU%u: cpu didn't die\n", cpu);
return; return;
} }
pr_info("CPU%u: shutdown\n", cpu); pr_debug("CPU%u: shutdown\n", cpu);
/* /*
* Now that the dying CPU is beyond the point of no return w.r.t. * Now that the dying CPU is beyond the point of no return w.r.t.

View File

@ -459,7 +459,7 @@ reorder:
*/ */
device_reorder_to_tail(consumer, NULL); device_reorder_to_tail(consumer, NULL);
dev_info(consumer, "Linked as a consumer to %s\n", dev_name(supplier)); dev_dbg(consumer, "Linked as a consumer to %s\n", dev_name(supplier));
out: out:
device_pm_unlock(); device_pm_unlock();
@ -560,7 +560,7 @@ static void __device_link_del(struct kref *kref)
{ {
struct device_link *link = container_of(kref, struct device_link, kref); struct device_link *link = container_of(kref, struct device_link, kref);
dev_info(link->consumer, "Dropping the link to %s\n", dev_dbg(link->consumer, "Dropping the link to %s\n",
dev_name(link->supplier)); dev_name(link->supplier));
if (link->flags & DL_FLAG_PM_RUNTIME) if (link->flags & DL_FLAG_PM_RUNTIME)
@ -575,7 +575,7 @@ static void __device_link_del(struct kref *kref)
{ {
struct device_link *link = container_of(kref, struct device_link, kref); struct device_link *link = container_of(kref, struct device_link, kref);
dev_info(link->consumer, "Dropping the link to %s\n", dev_dbg(link->consumer, "Dropping the link to %s\n",
dev_name(link->supplier)); dev_name(link->supplier));
if (link->flags & DL_FLAG_PM_RUNTIME) if (link->flags & DL_FLAG_PM_RUNTIME)

View File

@ -462,7 +462,7 @@ int rpmh_rsc_send_data(struct rsc_drv *drv, const struct tcs_request *msg)
do { do {
ret = tcs_write(drv, msg); ret = tcs_write(drv, msg);
if (ret == -EBUSY) { if (ret == -EBUSY) {
pr_info_ratelimited("DRV:%s TCS Busy, retrying RPMH message send: addr=%#x\n", pr_debug("DRV:%s TCS Busy, retrying RPMH message send: addr=%#x\n",
drv->name, msg->cmds[0].addr); drv->name, msg->cmds[0].addr);
udelay(10); udelay(10);
} }

View File

@ -1400,7 +1400,7 @@ void enable_nonboot_cpus(void)
error = _cpu_up(cpu, 1, CPUHP_ONLINE); error = _cpu_up(cpu, 1, CPUHP_ONLINE);
trace_suspend_resume(TPS("CPU_ON"), cpu, false); trace_suspend_resume(TPS("CPU_ON"), cpu, false);
if (!error) { if (!error) {
pr_info("CPU%d is up\n", cpu); pr_debug("CPU%d is up\n", cpu);
cpu_device = get_cpu_device(cpu); cpu_device = get_cpu_device(cpu);
if (!cpu_device) if (!cpu_device)
pr_err("%s: failed to get cpu%d device\n", pr_err("%s: failed to get cpu%d device\n",

View File

@ -7173,9 +7173,9 @@ int dsi_display_set_mode(struct dsi_display *display,
goto error; goto error;
} }
DSI_INFO("mdp_transfer_time_us=%d us\n", DSI_DEBUG("mdp_transfer_time_us=%d us\n",
adj_mode.priv_info->mdp_transfer_time_us); adj_mode.priv_info->mdp_transfer_time_us);
DSI_INFO("hactive= %d,vactive= %d,fps=%d\n", DSI_DEBUG("hactive= %d,vactive= %d,fps=%d\n",
timing.h_active, timing.v_active, timing.h_active, timing.v_active,
timing.refresh_rate); timing.refresh_rate);