From owner-cvs-src@FreeBSD.ORG Sat Oct 9 13:25:20 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53F1A16A4CE; Sat, 9 Oct 2004 13:25:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48ED643D49; Sat, 9 Oct 2004 13:25:20 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i99DPKba097725; Sat, 9 Oct 2004 13:25:20 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i99DPK00097724; Sat, 9 Oct 2004 13:25:20 GMT (envelope-from glebius) Message-Id: <200410091325.i99DPK00097724@repoman.freebsd.org> From: Gleb Smirnoff Date: Sat, 9 Oct 2004 13:25:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys mbuf.h src/sys/kern uipc_mbuf2.c src/share/man/man9 mbuf_tags.9 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Oct 2004 13:25:20 -0000 glebius 2004-10-09 13:25:19 UTC FreeBSD src repository Modified files: sys/sys mbuf.h sys/kern uipc_mbuf2.c share/man/man9 mbuf_tags.9 Log: Remove inlined m_tag_free(). Rename _m_tag_free() to m_tag_free() and make it visible (same way as in OpenBSD). Describe usage in manpage. This change is useful for creating custom free methods, which call default free method at their end. While here, make malloc declaration for mbuf tags more informative. Approved by: julian (mentor), sam MFC after: 1 month Revision Changes Path 1.2 +11 -7 src/share/man/man9/mbuf_tags.9 1.27 +11 -6 src/sys/kern/uipc_mbuf2.c 1.160 +1 -9 src/sys/sys/mbuf.h