From owner-svn-src-projects@FreeBSD.ORG Sun Sep 21 18:52:57 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 348D3A9; Sun, 21 Sep 2014 18:52:57 +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 1FEFDACF; Sun, 21 Sep 2014 18:52:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8LIquam045180; Sun, 21 Sep 2014 18:52:56 GMT (envelope-from neel@FreeBSD.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8LIqu90045178; Sun, 21 Sep 2014 18:52:56 GMT (envelope-from neel@FreeBSD.org) Message-Id: <201409211852.s8LIqu90045178@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: neel set sender to neel@FreeBSD.org using -f From: Neel Natu Date: Sun, 21 Sep 2014 18:52:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r271933 - projects/bhyve_svm/sys/amd64/vmm 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: Sun, 21 Sep 2014 18:52:57 -0000 Author: neel Date: Sun Sep 21 18:52:56 2014 New Revision: 271933 URL: http://svnweb.freebsd.org/changeset/base/271933 Log: Get rid of unused stat VMM_HLT_IGNORED. Modified: projects/bhyve_svm/sys/amd64/vmm/vmm_stat.c projects/bhyve_svm/sys/amd64/vmm/vmm_stat.h Modified: projects/bhyve_svm/sys/amd64/vmm/vmm_stat.c ============================================================================== --- projects/bhyve_svm/sys/amd64/vmm/vmm_stat.c Sun Sep 21 18:15:09 2014 (r271932) +++ projects/bhyve_svm/sys/amd64/vmm/vmm_stat.c Sun Sep 21 18:52:56 2014 (r271933) @@ -152,7 +152,6 @@ VMM_STAT(VCPU_MIGRATIONS, "vcpu migratio VMM_STAT(VMEXIT_COUNT, "total number of vm exits"); VMM_STAT(VMEXIT_EXTINT, "vm exits due to external interrupt"); VMM_STAT(VMEXIT_HLT, "number of times hlt was intercepted"); -VMM_STAT(VMEXIT_HLT_IGNORED, "number of times hlt was ignored"); VMM_STAT(VMEXIT_CR_ACCESS, "number of times %cr access was intercepted"); VMM_STAT(VMEXIT_RDMSR, "number of times rdmsr was intercepted"); VMM_STAT(VMEXIT_WRMSR, "number of times wrmsr was intercepted"); Modified: projects/bhyve_svm/sys/amd64/vmm/vmm_stat.h ============================================================================== --- projects/bhyve_svm/sys/amd64/vmm/vmm_stat.h Sun Sep 21 18:15:09 2014 (r271932) +++ projects/bhyve_svm/sys/amd64/vmm/vmm_stat.h Sun Sep 21 18:52:56 2014 (r271933) @@ -141,7 +141,6 @@ VMM_STAT_DECLARE(VCPU_MIGRATIONS); VMM_STAT_DECLARE(VMEXIT_COUNT); VMM_STAT_DECLARE(VMEXIT_EXTINT); VMM_STAT_DECLARE(VMEXIT_HLT); -VMM_STAT_DECLARE(VMEXIT_HLT_IGNORED); VMM_STAT_DECLARE(VMEXIT_CR_ACCESS); VMM_STAT_DECLARE(VMEXIT_RDMSR); VMM_STAT_DECLARE(VMEXIT_WRMSR);