From owner-svn-src-head@FreeBSD.ORG Fri Dec 20 18:27:22 2013 Return-Path: Delivered-To: svn-src-head@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 426F3B28; Fri, 20 Dec 2013 18:27:22 +0000 (UTC) Received: from mail-oa0-x22c.google.com (mail-oa0-x22c.google.com [IPv6:2607:f8b0:4003:c02::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D66E71DB9; Fri, 20 Dec 2013 18:27:21 +0000 (UTC) Received: by mail-oa0-f44.google.com with SMTP id m1so3283514oag.31 for ; Fri, 20 Dec 2013 10:27:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=SaUEgQPuwCCaXmaP6rHh8uRAsbXE3mIczyobFVemo8I=; b=cGlkgUPRN6xgwg3G2ggLGfa0axUXloZMX4x99PogcG1S+pCJCvQKWPfn/06oFrAP4Q EfQqNygN8MsJKurUM8fJ3e31Zq2T5Lg/9C4dPttdLRJjxCelWDwjY6xTJnnG5X/OU4wH cdWECIuKR0yTGdwfm/NL4hUs+c1KsNvwe2zX5kTU+mlXzqTBttDLL8MZ3UI9+jpM+Nrf eq/o6hf0/xlgUewgd+0NqPC7PfEF9qysj7mWIJ8k2oFkcln4JBMJIqV7CcWmWTMjl5tN F6UJX3VLqblQu/E1t4aoePWU7RzCvbc+cE+q0Z6eEWz7Gyoiq0tVuNvmgJ0Hjq4Pjvbl +wmg== MIME-Version: 1.0 X-Received: by 10.182.99.231 with SMTP id et7mr7427510obb.10.1387564041175; Fri, 20 Dec 2013 10:27:21 -0800 (PST) Received: by 10.182.142.101 with HTTP; Fri, 20 Dec 2013 10:27:21 -0800 (PST) In-Reply-To: <201312200550.rBK5oNmw098487@svn.freebsd.org> References: <201312200550.rBK5oNmw098487@svn.freebsd.org> Date: Fri, 20 Dec 2013 10:27:21 -0800 Message-ID: Subject: Re: svn commit: r259641 - in head/sys/amd64: amd64 include vmm/intel From: Benjamin Kaduk To: Neel Natu Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Dec 2013 18:27:22 -0000 On Thu, Dec 19, 2013 at 9:50 PM, Neel Natu wrote: > Author: neel > Date: Fri Dec 20 05:50:22 2013 > New Revision: 259641 > URL: http://svnweb.freebsd.org/changeset/base/259641 > > Log: > Re-arrange bits in the amd64/pmap 'pm_flags' field. > > The least significant 8 bits of 'pm_flags' are now used for the IPI > vector > to use for nested page table TLB shootdown. > > Previously we used IPI_AST to interrupt the host cpu which is > functionally > correct but could lead to misleading interrupt counts for AST handler. > The > AST handler was also doing a lot more than what is required for the > nested > page table TLB shootdown (EOI and IRET). > This represents a KBI change, does it not? Should __FreeBSD_version be bumped? -Ben