diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2017-05-19 05:59:28 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2017-05-19 05:59:28 +0000 |
commit | b3f1eecc2262b7c4017843ce6bf3f405217a8544 (patch) | |
tree | 69b8eceeb9ada766598e008191dca7ac8e27b3ea /share/man/man9 | |
parent | c08ae2e5f18b698d7e87cf20163e8c265268eedf (diff) |
header updates from kevlo;
Diffstat (limited to 'share/man/man9')
-rw-r--r-- | share/man/man9/mbuf.9 | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9 index 559efe71696..dba1344dc1b 100644 --- a/share/man/man9/mbuf.9 +++ b/share/man/man9/mbuf.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mbuf.9,v 1.106 2017/03/29 23:05:05 claudio Exp $ +.\" $OpenBSD: mbuf.9,v 1.107 2017/05/19 05:59:27 jmc Exp $ .\" .\" Copyright (c) 2001 Jean-Jacques Bernard-Gundol <jjbg@openbsd.org> .\" All rights reserved. @@ -25,7 +25,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: March 29 2017 $ +.Dd $Mdocdate: May 19 2017 $ .Dt MGET 9 .Os .Sh NAME @@ -154,11 +154,15 @@ struct m_hdr { u_int mh_len; short mh_type; u_short mh_flags; +#ifndef __LP64__ + u_int mh_pad; +#endif }; struct pkthdr { void *ph_cookie; SLIST_HEAD(, m_tag) ph_tags; + int64_t ph_timestamp; int len; u_int16_t ph_tagsset; u_int16_t ph_flowid; @@ -183,8 +187,8 @@ struct pkthdr_pf { struct mbuf_ext { caddr_t ext_buf; - void (*ext_free)(caddr_t, u_int, void *); - void *ext_arg; + void *ext_arg; + u_int ext_free_fn; u_int ext_size; struct mbuf *ext_nextref; struct mbuf *ext_prevref; |