svn commit: r357935 - head/sys/mips/include

Kyle Evans kevans at FreeBSD.org
Fri Feb 14 20:25:05 UTC 2020


Author: kevans
Date: Fri Feb 14 20:25:04 2020
New Revision: 357935
URL: https://svnweb.freebsd.org/changeset/base/357935

Log:
  mips: fix kernel build after r357804
  
  Drop the padding down the size of a single uintptr_t to account for
  pc_zpcpu_offset

Modified:
  head/sys/mips/include/pcpu.h

Modified: head/sys/mips/include/pcpu.h
==============================================================================
--- head/sys/mips/include/pcpu.h	Fri Feb 14 19:47:53 2020	(r357934)
+++ head/sys/mips/include/pcpu.h	Fri Feb 14 20:25:04 2020	(r357935)
@@ -57,7 +57,7 @@
 	vm_offset_t	pc_cmap2_addr;		/* KVA page for copy window 2 */ \
 	vm_offset_t	pc_qmap_addr;		/* KVA page for temporary mappings */ \
 	pt_entry_t	*pc_qmap_ptep;		/* PTE for temporary mapping KVA */ \
-	char		__pad[101]
+	char		__pad[97]
 #endif
 
 #ifdef	__mips_n64


More information about the svn-src-all mailing list