From owner-svn-src-user@FreeBSD.ORG Tue Feb 26 06:38:01 2013 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7B089BAD; Tue, 26 Feb 2013 06:38:01 +0000 (UTC) (envelope-from alc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 58846FD4; Tue, 26 Feb 2013 06:38:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1Q6c1nX097726; Tue, 26 Feb 2013 06:38:01 GMT (envelope-from alc@svn.freebsd.org) Received: (from alc@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1Q6c1VF097725; Tue, 26 Feb 2013 06:38:01 GMT (envelope-from alc@svn.freebsd.org) Message-Id: <201302260638.r1Q6c1VF097725@svn.freebsd.org> From: Alan Cox Date: Tue, 26 Feb 2013 06:38:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r247311 - user/attilio/vmc-playground/sys/vm X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Feb 2013 06:38:01 -0000 Author: alc Date: Tue Feb 26 06:38:00 2013 New Revision: 247311 URL: http://svnweb.freebsd.org/changeset/base/247311 Log: Update a comment: noobj_alloc() has replaced obj_alloc(), but it doesn't really make sense for this comment to name specific backend allocators, instead simply refer to backend allocators. Sponsored by: EMC / Isilon Storage Division Modified: user/attilio/vmc-playground/sys/vm/uma.h Modified: user/attilio/vmc-playground/sys/vm/uma.h ============================================================================== --- user/attilio/vmc-playground/sys/vm/uma.h Tue Feb 26 06:01:58 2013 (r247310) +++ user/attilio/vmc-playground/sys/vm/uma.h Tue Feb 26 06:38:00 2013 (r247311) @@ -520,7 +520,7 @@ void uma_zone_set_zinit(uma_zone_t zone, void uma_zone_set_zfini(uma_zone_t zone, uma_fini zfini); /* - * Replaces the standard page_alloc or obj_alloc functions for this zone + * Replaces the standard backend allocator for this zone. * * Arguments: * zone The zone whose backend allocator is being changed.