From owner-svn-src-user@FreeBSD.ORG Mon Jun 30 19:09:25 2014 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3FAE15CF; Mon, 30 Jun 2014 19:09:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2D42B29A9; Mon, 30 Jun 2014 19:09:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5UJ9PLC063712; Mon, 30 Jun 2014 19:09:25 GMT (envelope-from attilio@svn.freebsd.org) Received: (from attilio@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5UJ9PKg063711; Mon, 30 Jun 2014 19:09:25 GMT (envelope-from attilio@svn.freebsd.org) Message-Id: <201406301909.s5UJ9PKg063711@svn.freebsd.org> From: Attilio Rao Date: Mon, 30 Jun 2014 19:09:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r268056 - user/attilio/rm_vmobj_cache/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.18 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: Mon, 30 Jun 2014 19:09:25 -0000 Author: attilio Date: Mon Jun 30 19:09:24 2014 New Revision: 268056 URL: http://svnweb.freebsd.org/changeset/base/268056 Log: Fix compilation. Modified: user/attilio/rm_vmobj_cache/sys/vm/vm_page.c Modified: user/attilio/rm_vmobj_cache/sys/vm/vm_page.c ============================================================================== --- user/attilio/rm_vmobj_cache/sys/vm/vm_page.c Mon Jun 30 18:11:22 2014 (r268055) +++ user/attilio/rm_vmobj_cache/sys/vm/vm_page.c Mon Jun 30 19:09:24 2014 (r268056) @@ -2445,11 +2445,10 @@ vm_page_deactivate(vm_page_t m) * Finally, the page must also belong to an object, so it must not be * unmanaged. */ -static inline void +void vm_page_dispose(vm_page_t m) { struct vm_pagequeue *pq; - int queue; vm_page_lock_assert(m, MA_OWNED); KASSERT(m->queue == PQ_NONE,