Patch "KVM: selftests: Fix build regression by using accessor function" has been added to the 5.15-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    KVM: selftests: Fix build regression by using accessor function

to the 5.15-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     kvm-selftests-fix-build-regression-by-using-accessor.patch
and it can be found in the queue-5.15 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 461fbbc244f45b95a6d9e4a10d7616c9ec12e15e
Author: Tyler Hicks <code@xxxxxxxxxxx>
Date:   Thu Dec 22 18:09:58 2022 -0600

    KVM: selftests: Fix build regression by using accessor function
    
    Fix the stable backport of commit 05c2224d4b04 ("KVM: selftests: Fix
    number of pages for memory slot in memslot_modification_stress_test"),
    which caused memslot_modification_stress_test.c build failures due to
    trying to access private members of struct kvm_vm.
    
    v6.0 commit b530eba14c70 ("KVM: selftests: Get rid of
    kvm_util_internal.h") and some other commits got rid of the accessors
    and made all of the KVM data structures public. Keep using the accessors
    in older kernels.
    
    There is no corresponding upstream commit for this change.
    
    Signed-off-by: Tyler Hicks (Microsoft) <code@xxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/tools/testing/selftests/kvm/memslot_modification_stress_test.c b/tools/testing/selftests/kvm/memslot_modification_stress_test.c
index 1d806b8ffee2..766c1790df66 100644
--- a/tools/testing/selftests/kvm/memslot_modification_stress_test.c
+++ b/tools/testing/selftests/kvm/memslot_modification_stress_test.c
@@ -72,7 +72,7 @@ struct memslot_antagonist_args {
 static void add_remove_memslot(struct kvm_vm *vm, useconds_t delay,
 			       uint64_t nr_modifications)
 {
-	uint64_t pages = max_t(int, vm->page_size, getpagesize()) / vm->page_size;
+	uint64_t pages = max_t(int, vm_get_page_size(vm), getpagesize()) / vm_get_page_size(vm);
 	uint64_t gpa;
 	int i;
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux