diff options
author | Claudio Imbrenda <imbrenda@linux.ibm.com> | 2022-11-11 18:06:30 +0100 |
---|---|---|
committer | Janosch Frank <frankja@linux.ibm.com> | 2022-11-23 10:06:50 +0100 |
commit | afe20eb8df9108e4be9bdec88a4f90d2de863ca2 (patch) | |
tree | eacacea0ccf349fafb31f2f4f9491c37ff4bebb6 /arch/s390 | |
parent | KVM: s390: pv: add KVM_CAP_S390_PROTECTED_ASYNC_DISABLE (diff) | |
download | linux-afe20eb8df9108e4be9bdec88a4f90d2de863ca2.tar.xz linux-afe20eb8df9108e4be9bdec88a4f90d2de863ca2.zip |
KVM: s390: pv: avoid export before import if possible
If the appropriate UV feature bit is set, there is no need to perform
an export before import.
The misc feature indicates, among other things, that importing a shared
page from a different protected VM will automatically also transfer its
ownership.
Signed-off-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Reviewed-by: Nico Boehr <nrb@linux.ibm.com>
Reviewed-by: Janosch Frank <frankja@linux.ibm.com>
Reviewed-by: Steffen Eiden <seiden@linux.ibm.com>
Link: https://lore.kernel.org/r/20221111170632.77622-5-imbrenda@linux.ibm.com
Message-Id: <20221111170632.77622-5-imbrenda@linux.ibm.com>
Signed-off-by: Janosch Frank <frankja@linux.ibm.com>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/kernel/uv.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/s390/kernel/uv.c b/arch/s390/kernel/uv.c index f9810d2a267c..9f18a4af9c13 100644 --- a/arch/s390/kernel/uv.c +++ b/arch/s390/kernel/uv.c @@ -255,6 +255,13 @@ static int make_secure_pte(pte_t *ptep, unsigned long addr, */ static bool should_export_before_import(struct uv_cb_header *uvcb, struct mm_struct *mm) { + /* + * The misc feature indicates, among other things, that importing a + * shared page from a different protected VM will automatically also + * transfer its ownership. + */ + if (test_bit_inv(BIT_UV_FEAT_MISC, &uv_info.uv_feature_indications)) + return false; if (uvcb->cmd == UVC_CMD_UNPIN_PAGE_SHARED) return false; return atomic_read(&mm->context.protected_count) > 1; |