summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2016-09-15 00:00:41 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2016-09-15 00:00:41 +0000
commit1792bcd81c6527ef7f7f0386718aa7d473db7e01 (patch)
treef6d09d27a546a0c1252612528a9d21fc97da0013 /share
parent16d28241f468c366b201ce14448f53c133c0be51 (diff)
remove m_copym2 as its use has been replaced by m_dup_pkt
ok millert@ mpi@ henning@ claudio@ markus@
Diffstat (limited to 'share')
-rw-r--r--share/man/man9/mbuf.913
1 files changed, 2 insertions, 11 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9
index 3ebee83a933..839d01bfb70 100644
--- a/share/man/man9/mbuf.9
+++ b/share/man/man9/mbuf.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: mbuf.9,v 1.103 2016/09/13 19:56:55 markus Exp $
+.\" $OpenBSD: mbuf.9,v 1.104 2016/09/15 00:00:40 dlg Exp $
.\"
.\" Copyright (c) 2001 Jean-Jacques Bernard-Gundol <jjbg@openbsd.org>
.\" All rights reserved.
@@ -25,11 +25,10 @@
.\" (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: September 13 2016 $
+.Dd $Mdocdate: September 15 2016 $
.Dt MGET 9
.Os
.Sh NAME
-.Nm m_copym2 ,
.Nm m_copym ,
.Nm m_free ,
.Nm m_get ,
@@ -70,8 +69,6 @@
.Sh SYNOPSIS
.In sys/mbuf.h
.Ft struct mbuf *
-.Fn m_copym2 "struct mbuf *m" "int off" "int len" "int wait"
-.Ft struct mbuf *
.Fn m_copym "struct mbuf *m" "int off" "int len" "int wait"
.Ft struct mbuf *
.Fn m_free "struct mbuf *m"
@@ -437,12 +434,6 @@ The
parameter can be M_WAIT or
M_DONTWAIT.
It does not copy clusters, it just increases their reference count.
-.It Fn m_copym2 "struct mbuf *m" "int off" "int len" "int wait"
-The same as
-.Fn m_copym
-except that it copies cluster mbufs, whereas
-.Fn m_copym
-just increases the reference count of the clusters.
.It Fn m_free "struct mbuf *m"
Free the mbuf pointed to by
.Fa m .