diff options
author | jhibbits <jhibbits@FreeBSD.org> | 2013-06-04 00:40:26 +0000 |
---|---|---|
committer | jhibbits <jhibbits@FreeBSD.org> | 2013-06-04 00:40:26 +0000 |
commit | 7b99a1571cea38ee4af5c67ff9efdefd8fc9523f (patch) | |
tree | b8abfcb3f1ef2465846272345d9a73ca616565a8 | |
parent | b381972ac37afbc6b31b3efa7ad06ded9f991a29 (diff) | |
download | FreeBSD-src-7b99a1571cea38ee4af5c67ff9efdefd8fc9523f.zip FreeBSD-src-7b99a1571cea38ee4af5c67ff9efdefd8fc9523f.tar.gz |
Pad the PCPU MD struct, to satisfy an assert added with the projects/counters
branch import.
PR: ports/179173,ports/179164
-rw-r--r-- | sys/powerpc/include/pcpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/powerpc/include/pcpu.h b/sys/powerpc/include/pcpu.h index 3f6a234..7ab184e 100644 --- a/sys/powerpc/include/pcpu.h +++ b/sys/powerpc/include/pcpu.h @@ -128,7 +128,7 @@ struct pmap; */ #ifndef PCPU_MD_FIELDS #define PCPU_MD_FIELDS \ - int pc_md_placeholder + int pc_md_placeholder[32] #endif #ifdef _KERNEL |