diff options
author | kmacy <kmacy@FreeBSD.org> | 2007-06-12 21:19:12 +0000 |
---|---|---|
committer | kmacy <kmacy@FreeBSD.org> | 2007-06-12 21:19:12 +0000 |
commit | 86dad49f829b2d40b14259598143863cee5f8f4f (patch) | |
tree | 4db15e91edf8f3bd3ac701acf30132df432175ff /sys/sun4v | |
parent | 21fc8c30740f2849938da4d8747505c39b851f49 (diff) | |
download | FreeBSD-src-86dad49f829b2d40b14259598143863cee5f8f4f.zip FreeBSD-src-86dad49f829b2d40b14259598143863cee5f8f4f.tar.gz |
fix cassert failure by adjusting padding
Diffstat (limited to 'sys/sun4v')
-rw-r--r-- | sys/sun4v/include/pcpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sun4v/include/pcpu.h b/sys/sun4v/include/pcpu.h index 2515031..69f3dd5 100644 --- a/sys/sun4v/include/pcpu.h +++ b/sys/sun4v/include/pcpu.h @@ -74,7 +74,7 @@ struct pmap; u_int pc_kwbuf_full; \ struct rwindow pc_tsbwbuf[2]; \ uint16_t pc_cpulist[MAXCPU]; \ - uint64_t pad[10]; + uint64_t pad[11]; /* XXX SUN4V_FIXME - as we access the *_ra and *_size fields in quick * succession we _really_ want them to be L1 cache line size aligned |