From owner-svn-src-user@FreeBSD.ORG Thu Feb 7 15:13:36 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 44380F3A; Thu, 7 Feb 2013 15:13:36 +0000 (UTC) (envelope-from attilio@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 2D4B0748; Thu, 7 Feb 2013 15:13:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r17FDa99097722; Thu, 7 Feb 2013 15:13:36 GMT (envelope-from attilio@svn.freebsd.org) Received: (from attilio@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r17FDaOq097721; Thu, 7 Feb 2013 15:13:36 GMT (envelope-from attilio@svn.freebsd.org) Message-Id: <201302071513.r17FDaOq097721@svn.freebsd.org> From: Attilio Rao Date: Thu, 7 Feb 2013 15:13:36 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r246478 - 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: Thu, 07 Feb 2013 15:13:36 -0000 Author: attilio Date: Thu Feb 7 15:13:35 2013 New Revision: 246478 URL: http://svnweb.freebsd.org/changeset/base/246478 Log: Remove implementation specific comments from a public interface. Modified: user/attilio/vmc-playground/sys/vm/_vm_radix.h Modified: user/attilio/vmc-playground/sys/vm/_vm_radix.h ============================================================================== --- user/attilio/vmc-playground/sys/vm/_vm_radix.h Thu Feb 7 15:13:35 2013 (r246477) +++ user/attilio/vmc-playground/sys/vm/_vm_radix.h Thu Feb 7 15:13:35 2013 (r246478) @@ -30,11 +30,10 @@ #define __VM_RADIX_H_ /* - * Radix tree root. The height and pointer are set together to permit - * coherent lookups while the root is modified. + * Radix tree root. */ struct vm_radix { - uintptr_t rt_root; /* root + height */ + uintptr_t rt_root; }; #endif /* !__VM_RADIX_H_ */