From owner-svn-src-all@FreeBSD.ORG Thu Sep 29 00:44:34 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2F50106566C; Thu, 29 Sep 2011 00:44:34 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A33CC8FC16; Thu, 29 Sep 2011 00:44:34 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p8T0iYcx096978; Thu, 29 Sep 2011 00:44:34 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p8T0iYfr096976; Thu, 29 Sep 2011 00:44:34 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201109290044.p8T0iYfr096976@svn.freebsd.org> From: Konstantin Belousov Date: Thu, 29 Sep 2011 00:44:34 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r225856 - head/sys/vm X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Sep 2011 00:44:34 -0000 Author: kib Date: Thu Sep 29 00:44:34 2011 New Revision: 225856 URL: http://svn.freebsd.org/changeset/base/225856 Log: Style nit. Submitted by: jhb MFC after: 2 weeks Modified: head/sys/vm/vm_page.c Modified: head/sys/vm/vm_page.c ============================================================================== --- head/sys/vm/vm_page.c Thu Sep 29 00:39:56 2011 (r225855) +++ head/sys/vm/vm_page.c Thu Sep 29 00:44:34 2011 (r225856) @@ -2348,7 +2348,6 @@ vm_page_clear_dirty_mask(vm_page_t m, in * If the object is locked and the page is neither VPO_BUSY nor * PGA_WRITEABLE, then the page's dirty field cannot possibly be * set by a concurrent pmap operation. - * */ VM_OBJECT_LOCK_ASSERT(m->object, MA_OWNED); if ((m->oflags & VPO_BUSY) == 0 && (m->aflags & PGA_WRITEABLE) == 0)