From owner-svn-src-projects@FreeBSD.ORG Sat Oct 11 03:19:27 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 65F5CE6A; Sat, 11 Oct 2014 03:19:27 +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 523E5A34; Sat, 11 Oct 2014 03:19:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9B3JRw1080505; Sat, 11 Oct 2014 03:19:27 GMT (envelope-from neel@FreeBSD.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9B3JR41080504; Sat, 11 Oct 2014 03:19:27 GMT (envelope-from neel@FreeBSD.org) Message-Id: <201410110319.s9B3JR41080504@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: neel set sender to neel@FreeBSD.org using -f From: Neel Natu Date: Sat, 11 Oct 2014 03:19:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r272927 - projects/bhyve_svm/sys/amd64/vmm/amd X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 03:19:27 -0000 Author: neel Date: Sat Oct 11 03:19:26 2014 New Revision: 272927 URL: https://svnweb.freebsd.org/changeset/base/272927 Log: style(9) fixes. Get rid of unused headers. Modified: projects/bhyve_svm/sys/amd64/vmm/amd/npt.c Modified: projects/bhyve_svm/sys/amd64/vmm/amd/npt.c ============================================================================== --- projects/bhyve_svm/sys/amd64/vmm/amd/npt.c Sat Oct 11 03:09:34 2014 (r272926) +++ projects/bhyve_svm/sys/amd64/vmm/amd/npt.c Sat Oct 11 03:19:26 2014 (r272927) @@ -37,13 +37,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include -#include -#include - -#include "svm.h" -#include "vmcb.h" -#include "svm_softc.h" + #include "npt.h" SYSCTL_DECL(_hw_vmm); @@ -54,6 +48,7 @@ SYSCTL_INT(_hw_vmm_npt, OID_AUTO, pmap_f &npt_flags, 0, NULL); #define NPT_IPIMASK 0xFF + /* * AMD nested page table init. */ @@ -70,8 +65,6 @@ svm_npt_init(int ipinum) return (0); } - - static int npt_pinit(pmap_t pmap) {