svn commit: r359682 - head/sys/riscv/riscv

Jessica Clarke jrtc27 at FreeBSD.org
Mon Apr 6 23:54:51 UTC 2020


Author: jrtc27
Date: Mon Apr  6 23:54:50 2020
New Revision: 359682
URL: https://svnweb.freebsd.org/changeset/base/359682

Log:
  riscv: Add semicolon missing from r359672
  
  Somehow this got lost between build-testing and submitting to Phabricator.

Modified:
  head/sys/riscv/riscv/pmap.c

Modified: head/sys/riscv/riscv/pmap.c
==============================================================================
--- head/sys/riscv/riscv/pmap.c	Mon Apr  6 23:38:46 2020	(r359681)
+++ head/sys/riscv/riscv/pmap.c	Mon Apr  6 23:54:50 2020	(r359682)
@@ -4354,7 +4354,7 @@ pmap_sync_icache(pmap_t pmap, vm_offset_t va, vm_size_
 	sched_pin();
 	mask = all_harts;
 	CPU_CLR(PCPU_GET(hart), &mask);
-	fence_i()
+	fence_i();
 	if (!CPU_EMPTY(&mask) && smp_started) {
 		fence();
 		sbi_remote_fence_i(mask.__bits);


More information about the svn-src-all mailing list