From owner-cvs-src@FreeBSD.ORG Sun Apr 18 04:48:36 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 66A9816A4CE; Sun, 18 Apr 2004 04:48:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BE6F43D45; Sun, 18 Apr 2004 04:48:36 -0700 (PDT) (envelope-from luigi@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 i3IBmaGe035548; Sun, 18 Apr 2004 04:48:36 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3IBmZ2i035547; Sun, 18 Apr 2004 04:48:35 -0700 (PDT) (envelope-from luigi) Message-Id: <200404181148.i3IBmZ2i035547@repoman.freebsd.org> From: Luigi Rizzo Date: Sun, 18 Apr 2004 04:48:35 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net radix.c radix.h 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: Sun, 18 Apr 2004 11:48:36 -0000 luigi 2004/04/18 04:48:35 PDT FreeBSD src repository Modified files: sys/net radix.c radix.h Log: + move MKGet()/MKFree() into the only file that can use them. + remove useless wrappers around bcmp(), bcopy(), bzero(). The code assumes that bcmp() returns 0 if the size is 0, but this is true for both the libc and the libkern versions. + nuke Bcmp, Bzero, Bcopy from radix.h now that nobody uses them anymore. Revision Changes Path 1.34 +19 -13 src/sys/net/radix.c 1.25 +0 -15 src/sys/net/radix.h