From owner-svn-src-user@FreeBSD.ORG Mon May 26 12:28:34 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 E42C1741; Mon, 26 May 2014 12:28:34 +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 D1BBF2D83; Mon, 26 May 2014 12:28:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4QCSY0H084395; Mon, 26 May 2014 12:28:34 GMT (envelope-from attilio@svn.freebsd.org) Received: (from attilio@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4QCSYsj084394; Mon, 26 May 2014 12:28:34 GMT (envelope-from attilio@svn.freebsd.org) Message-Id: <201405261228.s4QCSYsj084394@svn.freebsd.org> From: Attilio Rao Date: Mon, 26 May 2014 12:28:34 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r266687 - 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, 26 May 2014 12:28:35 -0000 Author: attilio Date: Mon May 26 12:28:34 2014 New Revision: 266687 URL: http://svnweb.freebsd.org/changeset/base/266687 Log: Fix typo. 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 May 26 11:16:28 2014 (r266686) +++ user/attilio/rm_vmobj_cache/sys/vm/vm_page.c Mon May 26 12:28:34 2014 (r266687) @@ -2368,7 +2368,7 @@ vm_page_unwire(vm_page_t m, int activate if (m->wire_count > 0) { m->wire_count--; if (m->wire_count == 0) { - if ((m->oflags & VPO_UNAMANGED) != 0) + if ((m->oflags & VPO_UNMANAGED) != 0) panic("vm_page_unwire: unmanaged page %p's wire count is one", m); atomic_subtract_int(&vm_cnt.v_wire_count, 1);