svn commit: r362091 - head/sys/arm64/include

Andrew Turner andrew at FreeBSD.org
Fri Jun 12 10:43:22 UTC 2020


Author: andrew
Date: Fri Jun 12 10:43:21 2020
New Revision: 362091
URL: https://svnweb.freebsd.org/changeset/base/362091

Log:
  Teach the arm64 vfp.h about struct thread.
  
  Ensure struct thread is defined in vfp.h. In some cases it is not and stops
  the kernel from building.
  
  Sponsored by:	Innovate UK

Modified:
  head/sys/arm64/include/vfp.h

Modified: head/sys/arm64/include/vfp.h
==============================================================================
--- head/sys/arm64/include/vfp.h	Fri Jun 12 10:13:23 2020	(r362090)
+++ head/sys/arm64/include/vfp.h	Fri Jun 12 10:43:21 2020	(r362091)
@@ -42,6 +42,7 @@ struct vfpstate {
 
 #ifdef _KERNEL
 struct pcb;
+struct thread;
 
 void	vfp_init(void);
 void	vfp_discard(struct thread *);


More information about the svn-src-head mailing list