From owner-cvs-all@FreeBSD.ORG Fri Mar 28 08:08:54 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD7B61065679; Fri, 28 Mar 2008 08:08:54 +0000 (UTC) (envelope-from niclas.zeising@gmail.com) Received: from mail.visit.se (mail.visit.se [85.194.0.110]) by mx1.freebsd.org (Postfix) with ESMTP id 4FEF28FC21; Fri, 28 Mar 2008 08:08:54 +0000 (UTC) (envelope-from niclas.zeising@gmail.com) Received: by mail.visit.se (Postfix, from userid 503) id 62CD536E0358; Fri, 28 Mar 2008 09:09:00 +0100 (CET) Received: from mail.stunet.se (mail.stunet.se [85.194.0.111]) by mail.visit.se (Postfix) with ESMTP id 407A636E0344; Fri, 28 Mar 2008 09:08:58 +0100 (CET) Received: from [10.0.0.3] (cust.fiber-lan.vnet.lk.85.194.50.150.stunet.se [85.194.50.150]) by mail.stunet.se (Postfix) with ESMTP id E63473660A; Fri, 28 Mar 2008 09:08:52 +0100 (CET) Message-ID: <47EC9999.1020700@gmail.com> Date: Fri, 28 Mar 2008 08:09:13 +0100 From: Niclas Zeising User-Agent: Thunderbird 2.0.0.12 (Windows/20080213) MIME-Version: 1.0 To: Paul Saab References: <200803280429.m2S4TRwH016625@repoman.freebsd.org> In-Reply-To: <200803280429.m2S4TRwH016625@repoman.freebsd.org> Content-Type: multipart/mixed; boundary="------------010901090109070003010503" X-Spam-Checker-Version: SpamAssassin 3.0.6 (2005-12-07) on mail.visit.se X-Spam-Level: X-Spam-Status: No, score=-5.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.0.6 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/sys mincore.2 src/sys/amd64/amd64 pmap.c src/sys/i386/i386 pmap.c src/sys/sys mman.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Mar 2008 08:08:55 -0000 This is a multi-part message in MIME format. --------------010901090109070003010503 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Paul Saab wrote: > ps 2008-03-28 04:29:27 UTC > > FreeBSD src repository > > Modified files: > lib/libc/sys mincore.2 > sys/amd64/amd64 pmap.c > sys/i386/i386 pmap.c > sys/sys mman.h > Log: > Add support to mincore for detecting whether a page is part of a > "super" page or not. > > Reviewed by: alc, ups > > Revision Changes Path > 1.27 +2 -0 src/lib/libc/sys/mincore.2 > 1.610 +2 -1 src/sys/amd64/amd64/pmap.c > 1.611 +3 -2 src/sys/i386/i386/pmap.c > 1.42 +1 -0 src/sys/sys/mman.h There is a typo in this that broke the build. Attached patch fixes the build. Regards! Niclas --------------010901090109070003010503 Content-Type: text/x-diff; name="pmap.c.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="pmap.c.diff" Index: src/sys/i386/i386/pmap.c =================================================================== RCS file: /home/ncvs/src/sys/i386/i386/pmap.c,v retrieving revision 1.611 diff -u -d -r1.611 pmap.c --- src/sys/i386/i386/pmap.c 28 Mar 2008 04:29:27 -0000 1.611 +++ src/sys/i386/i386/pmap.c 28 Mar 2008 07:54:02 -0000 @@ -4481,7 +4481,7 @@ if (*pdep != 0) { if (*pdep & PG_PS) { pte = *pdep; - val = MINCORE_SUPER: + val = MINCORE_SUPER; /* Compute the physical address of the 4KB page. */ pa = ((*pdep & PG_PS_FRAME) | (addr & PDRMASK)) & PG_FRAME; --------------010901090109070003010503--