From owner-svn-src-user@FreeBSD.ORG Fri Feb 15 17:21:42 2013 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 149D2397; Fri, 15 Feb 2013 17:21:42 +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 F1A5A9FF; Fri, 15 Feb 2013 17:21:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1FHLf14032144; Fri, 15 Feb 2013 17:21:41 GMT (envelope-from attilio@svn.freebsd.org) Received: (from attilio@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1FHLfnJ032143; Fri, 15 Feb 2013 17:21:41 GMT (envelope-from attilio@svn.freebsd.org) Message-Id: <201302151721.r1FHLfnJ032143@svn.freebsd.org> From: Attilio Rao Date: Fri, 15 Feb 2013 17:21:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r246843 - 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: Fri, 15 Feb 2013 17:21:42 -0000 Author: attilio Date: Fri Feb 15 17:21:41 2013 New Revision: 246843 URL: http://svnweb.freebsd.org/changeset/base/246843 Log: Remove whitespace. Modified: user/attilio/vmc-playground/sys/vm/vm_page.c Modified: user/attilio/vmc-playground/sys/vm/vm_page.c ============================================================================== --- user/attilio/vmc-playground/sys/vm/vm_page.c Fri Feb 15 16:11:30 2013 (r246842) +++ user/attilio/vmc-playground/sys/vm/vm_page.c Fri Feb 15 17:21:41 2013 (r246843) @@ -825,7 +825,7 @@ vm_page_insert(vm_page_t m, vm_object_t */ if (object->resident_page_count == 0) { TAILQ_INSERT_TAIL(&object->memq, m, listq); - } else { + } else { neighbor = vm_radix_lookup_ge(&object->rtree, pindex); if (neighbor != NULL) { KASSERT(pindex < neighbor->pindex,