diff options
author | jan <jan@cvs.openbsd.org> | 2020-12-12 11:49:03 +0000 |
---|---|---|
committer | jan <jan@cvs.openbsd.org> | 2020-12-12 11:49:03 +0000 |
commit | 6d4278dde7bbd44ebf209900ed30094580ca9dd2 (patch) | |
tree | 679203df2879430d05268b1347f4f262cb4afc37 /share | |
parent | 056fb48734bba89aad9ad9db65ec02886cd2f21a (diff) |
Rename the macro MCLGETI to MCLGETL and removes the dead parameter ifp.
OK dlg@, bluhm@
No Opinion mpi@
Not against it claudio@
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/mbuf.9 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9 index 3d623003872..3b7db12b0e6 100644 --- a/share/man/man9/mbuf.9 +++ b/share/man/man9/mbuf.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mbuf.9,v 1.119 2020/08/08 07:42:31 florian Exp $ +.\" $OpenBSD: mbuf.9,v 1.120 2020/12/12 11:48:52 jan 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: August 8 2020 $ +.Dd $Mdocdate: December 12 2020 $ .Dt MGET 9 .Os .Sh NAME @@ -58,7 +58,7 @@ .Nm m_devget , .Nm m_apply , .Nm MCLGET , -.Nm MCLGETI , +.Nm MCLGETL , .Nm MEXTADD , .Nm m_align , .Nm M_READONLY , @@ -126,7 +126,7 @@ "int (*func)(caddr_t, caddr_t, unsigned int)" "caddr_t fstate" .Fn MCLGET "struct mbuf *m" "int how" .Ft struct mbuf * -.Fn MCLGETI "struct mbuf *m" "int how" "struct ifnet *ifp" "int len" +.Fn MCLGETL "struct mbuf *m" "int how" "int len" .Fn MEXTADD "struct mbuf *m" "caddr_t buf" "u_int size" "int flags" \ "void (*free)(caddr_t, u_int, void *)" "void *arg" .Ft void @@ -721,7 +721,7 @@ See .Fn m_get for a description of .Fa how . -.It Fn MCLGETI "struct mbuf *m" "int how" "struct ifnet *ifp" "int len" +.It Fn MCLGETL "struct mbuf *m" "int how" "int len" If .Fa m is NULL, allocate it. |