diff options
author | 2016-04-08 10:01:12 +0000 | |
---|---|---|
committer | 2016-04-08 10:01:12 +0000 | |
commit | fcb101f0a827e66dcab00aa488e65ad1dfac9bb3 (patch) | |
tree | 6375df1aed90aa71d14437af37eaf3fb188fcc30 | |
parent | sync (diff) | |
download | wireguard-openbsd-fcb101f0a827e66dcab00aa488e65ad1dfac9bb3.tar.xz wireguard-openbsd-fcb101f0a827e66dcab00aa488e65ad1dfac9bb3.zip |
bare .Nm gets turned into m_copym2, which is wrong when describing mbufs.
use explicit .Nm mbuf where appropriate.
discussed with jmc@
-rw-r--r-- | share/man/man9/mbuf.9 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9 index bc76062ee82..a663f801599 100644 --- a/share/man/man9/mbuf.9 +++ b/share/man/man9/mbuf.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mbuf.9,v 1.98 2016/04/08 03:23:13 dlg Exp $ +.\" $OpenBSD: mbuf.9,v 1.99 2016/04/08 10:01:12 dlg Exp $ .\" .\" Copyright (c) 2001 Jean-Jacques Bernard-Gundol <jjbg@openbsd.org> .\" All rights reserved. @@ -219,18 +219,18 @@ struct mbuf { .Ed .Sh DESCRIPTION The -.Nm +.Nm mbuf functions provide a way to manage the memory buffers used by the kernel's networking subsystem. Several functions and macros are used to allocate and deallocate mbufs, but also to get, inject, remove, copy, modify, prepend or append data inside these mbufs. The size of an -.Nm +.Nm mbuf is defined by MSIZE. .Pp An -.Nm +.Nm mbuf structure is defined as an .Fa m_hdr structure followed by a |