diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2008-11-23 16:17:18 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2008-11-23 16:17:18 +0000 |
commit | f1566cfd4b0e54a06aad91d45352b5f984361a7d (patch) | |
tree | 0f2a29f0ff6be87d42def6b89e3d50243106737e | |
parent | bb7f26bd1ae0d5a4e84d2a10b10f4fa463c01edb (diff) |
rename struct m_ext to be struct mbuf_ext.
ok deraadt@ claudio@
-rw-r--r-- | sys/sys/mbuf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index 1afb246d6b2..a5a51e3d55b 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mbuf.h,v 1.107 2008/11/07 17:31:24 deraadt Exp $ */ +/* $OpenBSD: mbuf.h,v 1.108 2008/11/23 16:17:17 dlg Exp $ */ /* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */ /* @@ -102,7 +102,7 @@ struct pkthdr { }; /* description of external storage mapped into mbuf, valid if M_EXT set */ -struct m_ext { +struct mbuf_ext { caddr_t ext_buf; /* start of buffer */ /* free routine if not the usual */ void (*ext_free)(caddr_t, u_int, void *); @@ -125,7 +125,7 @@ struct mbuf { struct { struct pkthdr MH_pkthdr; /* M_PKTHDR set */ union { - struct m_ext MH_ext; /* M_EXT set */ + struct mbuf_ext MH_ext; /* M_EXT set */ char MH_databuf[MHLEN]; } MH_dat; } MH; |