Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Sep 2019 02:36:09 +0000 (UTC)
From:      Mitchell Horne <mhorne@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r352640 - stable/12/sys/riscv/riscv
Message-ID:  <201909240236.x8O2a9np084903@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mhorne
Date: Tue Sep 24 02:36:09 2019
New Revision: 352640
URL: https://svnweb.freebsd.org/changeset/base/352640

Log:
  MFC r352035:
  
  Remove a duplicate KTR entry

Modified:
  stable/12/sys/riscv/riscv/intr_machdep.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/riscv/riscv/intr_machdep.c
==============================================================================
--- stable/12/sys/riscv/riscv/intr_machdep.c	Tue Sep 24 02:33:03 2019	(r352639)
+++ stable/12/sys/riscv/riscv/intr_machdep.c	Tue Sep 24 02:36:09 2019	(r352640)
@@ -204,7 +204,7 @@ ipi_send(struct pcpu *pc, int ipi)
 {
 	u_long mask;
 
-	CTR3(KTR_SMP, "%s: cpu=%d, ipi=%x", __func__, pc->pc_cpuid, ipi);
+	CTR3(KTR_SMP, "%s: cpu: %d, ipi: %x", __func__, pc->pc_cpuid, ipi);
 
 	atomic_set_32(&pc->pc_pending_ipis, ipi);
 	mask = (1 << pc->pc_hart);
@@ -234,7 +234,6 @@ ipi_cpu(int cpu, u_int ipi)
 	CPU_ZERO(&cpus);
 	CPU_SET(cpu, &cpus);
 
-	CTR3(KTR_SMP, "%s: cpu: %d, ipi: %x\n", __func__, cpu, ipi);
 	ipi_send(cpuid_to_pcpu[cpu], ipi);
 }
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909240236.x8O2a9np084903>