svn commit: r329340 - head/sys/amd64/include

Jung-uk Kim jkim at FreeBSD.org
Thu Feb 15 20:42:38 UTC 2018


Author: jkim
Date: Thu Feb 15 20:42:38 2018
New Revision: 329340
URL: https://svnweb.freebsd.org/changeset/base/329340

Log:
  Change size of padding to reflect reality.  No functional change.
  
  Discussed with:		kib

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

Modified: head/sys/amd64/include/pcpu.h
==============================================================================
--- head/sys/amd64/include/pcpu.h	Thu Feb 15 19:49:15 2018	(r329339)
+++ head/sys/amd64/include/pcpu.h	Thu Feb 15 20:42:38 2018	(r329340)
@@ -75,7 +75,7 @@
 	uint32_t pc_pcid_gen;						\
 	uint32_t pc_smp_tlb_done;	/* TLB op acknowledgement */	\
 	uint32_t pc_ibpb_set;						\
-	char	__pad[216]		/* be divisor of PAGE_SIZE	\
+	char	__pad[224]		/* be divisor of PAGE_SIZE	\
 					   after cache alignment */
 
 #define	PC_DBREG_CMD_NONE	0


More information about the svn-src-head mailing list