From owner-cvs-all@FreeBSD.ORG Fri Jan 2 09:27:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1CE016A4CF; Fri, 2 Jan 2004 09:27:43 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 428F743D41; Fri, 2 Jan 2004 09:27:40 -0800 (PST) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i02HRe0B042154; Fri, 2 Jan 2004 09:27:40 -0800 (PST) (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i02HReua042153; Fri, 2 Jan 2004 09:27:40 -0800 (PST) (envelope-from sam) Message-Id: <200401021727.i02HReua042153@repoman.freebsd.org> From: Sam Leffler Date: Fri, 2 Jan 2004 09:27:40 -0800 (PST) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jan 2004 17:27:44 -0000 sam 2004/01/02 09:27:40 PST FreeBSD src repository Modified files: sys/sys mbuf.h sys/kern uipc_mbuf2.c Log: m_tag fixups in preparation for heavier use: o promote several m_tag_* routines to inline o add an m_tag_setup inline to set the fixed fields in a packet tag o add an m_tag_free method pointer to each mtag to support, for example, allocating tags from zones o have m_tag_find check if the tag list is not empty before calling m_tag_locate to search Reviewed by: brooks, silence from others Revision Changes Path 1.22 +13 -51 src/sys/kern/uipc_mbuf2.c 1.134 +72 -7 src/sys/sys/mbuf.h