Message ID | 20221122161152.293072-14-mlevitsk@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show
Return-Path: <kvm-owner@kernel.org> X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C2F5BC433FE for <kvm@archiver.kernel.org>; Tue, 22 Nov 2022 16:15:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234269AbiKVQPh (ORCPT <rfc822;kvm@archiver.kernel.org>); Tue, 22 Nov 2022 11:15:37 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43106 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234240AbiKVQO7 (ORCPT <rfc822;kvm@vger.kernel.org>); Tue, 22 Nov 2022 11:14:59 -0500 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B538960EAB for <kvm@vger.kernel.org>; Tue, 22 Nov 2022 08:12:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1669133550; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=D7XgtHuC7oyB7G03qNmhSuClB2SsBkuZaDnSdxT1EVk=; b=eiYoWumh05f7fRNRxVcBE6uhcmVoU5Wx/V+U8HEE0SCScbjJLUvTj+WK9fwKhNc34KXSxn tG1RKoj2p9w2yCHfmY2Ve3r3aKsIMtfGwyllORAED3IMMPOiqMWf8Y/86Q1TMhzTRGtyLq Q6ighI4HKJtk2wEwJHxNr0Z/bP2cGM4= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-70-O45YczCTNGuRSSFhtTGWHw-1; Tue, 22 Nov 2022 11:12:26 -0500 X-MC-Unique: O45YczCTNGuRSSFhtTGWHw-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 8127A8039A6; Tue, 22 Nov 2022 16:12:25 +0000 (UTC) Received: from amdlaptop.tlv.redhat.com (dhcp-4-238.tlv.redhat.com [10.35.4.238]) by smtp.corp.redhat.com (Postfix) with ESMTP id 858E0112132D; Tue, 22 Nov 2022 16:12:23 +0000 (UTC) From: Maxim Levitsky <mlevitsk@redhat.com> To: kvm@vger.kernel.org Cc: Andrew Jones <drjones@redhat.com>, Alexandru Elisei <alexandru.elisei@arm.com>, Maxim Levitsky <mlevitsk@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>, Claudio Imbrenda <imbrenda@linux.ibm.com>, Thomas Huth <thuth@redhat.com>, =?utf-8?q?Alex_Benn=C3=A9e?= <alex.bennee@linaro.org>, Nico Boehr <nrb@linux.ibm.com>, Cathy Avery <cavery@redhat.com>, Janosch Frank <frankja@linux.ibm.com> Subject: [kvm-unit-tests PATCH v3 13/27] svm: remove get_npt_pte extern Date: Tue, 22 Nov 2022 18:11:38 +0200 Message-Id: <20221122161152.293072-14-mlevitsk@redhat.com> In-Reply-To: <20221122161152.293072-1-mlevitsk@redhat.com> References: <20221122161152.293072-1-mlevitsk@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 3.1 on 10.11.54.3 Precedence: bulk List-ID: <kvm.vger.kernel.org> X-Mailing-List: kvm@vger.kernel.org |
Series |
kvm-unit-tests: set of fixes and new tests
|
expand
|
Am 22/11/2022 um 17:11 schrieb Maxim Levitsky: > get_npt_pte is unused > > Signed-off-by: Maxim Levitsky <mlevitsk@redhat.com> > --- > x86/svm.h | 1 - > 1 file changed, 1 deletion(-) > Reviewed-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
diff --git a/x86/svm.h b/x86/svm.h index 766ff7e3..1ad85ba4 100644 --- a/x86/svm.h +++ b/x86/svm.h @@ -429,7 +429,6 @@ int __svm_vmrun(u64 rip); void __svm_bare_vmrun(void); int svm_vmrun(void); void test_set_guest(test_guest_func func); -u64* get_npt_pte(u64 *pml4, u64 guest_addr, int level); extern struct vmcb *vmcb;
get_npt_pte is unused Signed-off-by: Maxim Levitsky <mlevitsk@redhat.com> --- x86/svm.h | 1 - 1 file changed, 1 deletion(-)