svn commit: r296070 - head/sys/arm/qemu

Andrew Turner andrew at FreeBSD.org
Thu Feb 25 22:13:45 UTC 2016


Author: andrew
Date: Thu Feb 25 22:13:43 2016
New Revision: 296070
URL: https://svnweb.freebsd.org/changeset/base/296070

Log:
  Fix a mistake that crept in when moving between git and svn, pic_ipi_send
  should not be called from platform_mp_init_secondary.
  
  Sponsored by:	ABT Systems Ltd

Modified:
  head/sys/arm/qemu/virt_mp.c

Modified: head/sys/arm/qemu/virt_mp.c
==============================================================================
--- head/sys/arm/qemu/virt_mp.c	Thu Feb 25 22:07:32 2016	(r296069)
+++ head/sys/arm/qemu/virt_mp.c	Thu Feb 25 22:13:43 2016	(r296070)
@@ -103,5 +103,4 @@ platform_mp_init_secondary(void)
 {
 
 	intr_pic_init_secondary();
-	pic_ipi_send(cpus, ipi);
 }


More information about the svn-src-all mailing list