diff options
author | kmacy <kmacy@FreeBSD.org> | 2006-12-20 20:18:07 +0000 |
---|---|---|
committer | kmacy <kmacy@FreeBSD.org> | 2006-12-20 20:18:07 +0000 |
commit | d75ad4d16cfe00cdfd986cc9e078b97cb0bc8640 (patch) | |
tree | cc9ac416e0075c7a8219b9795387a476cbabad13 /sys/sun4v | |
parent | 3b05cb0c58ed250c60f7321838347a39face122f (diff) | |
download | FreeBSD-src-d75ad4d16cfe00cdfd986cc9e078b97cb0bc8640.zip FreeBSD-src-d75ad4d16cfe00cdfd986cc9e078b97cb0bc8640.tar.gz |
reduce padding to compensate for recent change to sys/pcpu.h (tinderbox fix)
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 c9f0b63..b080c3d 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[11]; + uint64_t pad[10]; /* 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 |