svn commit: r360569 - in head/sys: dev/cxgbe dev/cxgbe/crypto dev/cxgbe/tom kern sys
Li-Wen Hsu
lwhsu at freebsd.org
Mon May 4 07:46:57 UTC 2020
On Sun, May 3, 2020 at 6:39 AM Gleb Smirnoff <glebius at freebsd.org> wrote:
>
> Author: glebius
> Date: Sat May 2 22:39:26 2020
> New Revision: 360569
> URL: https://svnweb.freebsd.org/changeset/base/360569
...
> Modified: head/sys/kern/uipc_mbuf.c
> ==============================================================================
> --- head/sys/kern/uipc_mbuf.c Sat May 2 20:47:58 2020 (r360568)
> +++ head/sys/kern/uipc_mbuf.c Sat May 2 22:39:26 2020 (r360569)
> @@ -163,11 +163,11 @@ CTASSERT(offsetof(struct mbuf, m_pktdat) % 8 == 0);
> #if defined(__LP64__)
> CTASSERT(offsetof(struct mbuf, m_dat) == 32);
> CTASSERT(sizeof(struct pkthdr) == 56);
> -CTASSERT(sizeof(struct m_ext) == 168);
> +CTASSERT(sizeof(struct m_ext) == 160);
> #else
> CTASSERT(offsetof(struct mbuf, m_dat) == 24);
> CTASSERT(sizeof(struct pkthdr) == 48);
> -CTASSERT(sizeof(struct m_ext) == 184);
> +CTASSERT(sizeof(struct m_ext) == 180);
> #endif
This assertion is failing on powerpc and powerpcspe, can you check if
the constant needs adjustment?
Thanks,
Li-Wen
More information about the svn-src-head
mailing list