diff options
author | 2016-09-03 13:42:28 +0000 | |
---|---|---|
committer | 2016-09-03 13:42:28 +0000 | |
commit | ff690ec73a42ac25d462071a53643686010bc337 (patch) | |
tree | b1795ffa9b2d5951a4eb53214a8aa0b2f12cf8c2 | |
parent | Retire zaurus, as it hasn't made the EABI jump and will be permanently broken (diff) | |
download | wireguard-openbsd-ff690ec73a42ac25d462071a53643686010bc337.tar.xz wireguard-openbsd-ff690ec73a42ac25d462071a53643686010bc337.zip |
bump PACKET_TAG_MAXSIZE from 52 to 60 bytes to make room for the
upcoming bridge tunneltag change (the tag is used in the mtagpl pool).
OK henning@
-rw-r--r-- | sys/sys/mbuf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index df56ea8d91a..0cf95922ba0 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mbuf.h,v 1.216 2016/07/19 08:13:45 mpi Exp $ */ +/* $OpenBSD: mbuf.h,v 1.217 2016/09/03 13:42:28 reyk Exp $ */ /* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */ /* @@ -490,7 +490,7 @@ struct m_tag *m_tag_next(struct mbuf *, struct m_tag *); * length for an existing packet tag type or when adding a new one that * has payload larger than the value below. */ -#define PACKET_TAG_MAXSIZE 52 +#define PACKET_TAG_MAXSIZE 60 /* Detect mbufs looping in the kernel when spliced too often. */ #define M_MAXLOOP 128 |