From owner-cvs-src@FreeBSD.ORG Thu Feb 24 00:05:50 2005 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 768F916A4CE; Thu, 24 Feb 2005 00:05:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C51C43D2D; Thu, 24 Feb 2005 00:05:50 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j1O05o27099433; Thu, 24 Feb 2005 00:05:50 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j1O05oPC099432; Thu, 24 Feb 2005 00:05:50 GMT (envelope-from csjp) Message-Id: <200502240005.j1O05oPC099432@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Thu, 24 Feb 2005 00:05:50 +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/kern kern_kse.c 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: Thu, 24 Feb 2005 00:05:50 -0000 csjp 2005-02-24 00:05:50 UTC FreeBSD src repository Modified files: sys/kern kern_kse.c Log: Drop bzero and shove the responsibility of zeroing the kse upcall object on to the zone allocator. It should be noted that uma_zalloc(9) uses bzero to zero out the object so there probably wont be any real performance benefit. If UMA grows the ability to supply zeroed zones more efficiently in the future, we will not have to modify all the existing consumers. Discussed with: rwatson,julian MFC after: 1 week Revision Changes Path 1.211 +1 -2 src/sys/kern/kern_kse.c