Author: kib
Date: Tue Nov 12 15:47:46 2019
New Revision: 354644
URL: https://svnweb.freebsd.org/changeset/base/354644

Log:
  amd64: assert that size of the software prototype table for gdt is equal
  to the size of hardware gdt.
  
  Reviewed by:  jhb, markj
  Tested by:    pho
  Sponsored by: The FreeBSD Foundation
  MFC after:    1 week
  Differential revision:        https://reviews.freebsd.org/D22302

Modified:
  head/sys/amd64/amd64/machdep.c

Modified: head/sys/amd64/amd64/machdep.c
==============================================================================
--- head/sys/amd64/amd64/machdep.c      Tue Nov 12 15:46:28 2019        
(r354643)
+++ head/sys/amd64/amd64/machdep.c      Tue Nov 12 15:47:46 2019        
(r354644)
@@ -794,6 +794,7 @@ struct soft_segment_descriptor gdt_segs[] = {
        .ssd_def32 = 0,
        .ssd_gran = 0           },
 };
+_Static_assert(nitems(gdt_segs) == NGDT, "Stale NGDT");
 
 void
 setidt(int idx, inthand_t *func, int typ, int dpl, int ist)
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to