From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965063AbdKCBQy (ORCPT ); Thu, 2 Nov 2017 21:16:54 -0400 Received: from mga02.intel.com ([134.134.136.20]:59666 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S964999AbdKCBQ3 (ORCPT ); Thu, 2 Nov 2017 21:16:29 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.44,336,1505804400"; d="scan'208";a="1239053894" From: Haozhong Zhang To: kvm@vger.kernel.org, x86@kernel.org Cc: linux-kernel@vger.kernel.org, Paolo Bonzini , rkrcmar@redhat.com, Xiao Guangrong , Dan Williams , ivan.d.cuevas.escareno@intel.com, karthik.kumar@intel.com, Konrad Rzeszutek Wilk , Olif Chapman , Haozhong Zhang Subject: [PATCH v3 2/3] KVM: add converters between pfn_t and kvm_pfn_t Date: Fri, 3 Nov 2017 09:16:19 +0800 Message-Id: <20171103011620.21380-3-haozhong.zhang@intel.com> X-Mailer: git-send-email 2.14.1 In-Reply-To: <20171103011620.21380-1-haozhong.zhang@intel.com> References: <20171103011620.21380-1-haozhong.zhang@intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Signed-off-by: Haozhong Zhang --- include/linux/kvm_host.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h index 6882538eda32..759fe498c89e 100644 --- a/include/linux/kvm_host.h +++ b/include/linux/kvm_host.h @@ -67,6 +67,9 @@ #define KVM_PFN_ERR_HWPOISON (KVM_PFN_ERR_MASK + 1) #define KVM_PFN_ERR_RO_FAULT (KVM_PFN_ERR_MASK + 2) +#define kvm_pfn_to_pfn(x) ((pfn_t){ .val = (x)}) +#define pfn_to_kvm_pfn(x) ((kvm_pfn_t)((x).val)) + /* * error pfns indicate that the gfn is in slot but faild to * translate it to pfn on host. -- 2.14.1