diff options
author | jb <jb@FreeBSD.org> | 2007-11-29 20:50:40 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 2007-11-29 20:50:40 +0000 |
commit | e21400d5a1665756d4dc6788a651de14958b30fe (patch) | |
tree | fb13b18a010bf7407cfefd3c637a9d55febb2795 | |
parent | 4a0c7520172d74d3c6f5aba296d7bf5b35f24f83 (diff) | |
download | FreeBSD-src-e21400d5a1665756d4dc6788a651de14958b30fe.zip FreeBSD-src-e21400d5a1665756d4dc6788a651de14958b30fe.tar.gz |
Adjust the padding to account for the change of size of the MI part
of struct pcpu.
-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 30572b8..beb0789 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[9]; + uint64_t pad[4]; /* 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 |