aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2024-01-17 17:03:13 +0100
committerPeter Xu <peterx@redhat.com>2024-01-29 11:02:12 +0800
commit73b4987858cd2e0f5bd9ec626f2f95cce6cf84a1 (patch)
treed1cd985d11a40c11811aa5a6f8df6ca5af6b14c1 /tests
parent7a1dc45af581d2b643cdbf33c01fd96271616fbd (diff)
downloadqemu-73b4987858cd2e0f5bd9ec626f2f95cce6cf84a1.zip
qemu-73b4987858cd2e0f5bd9ec626f2f95cce6cf84a1.tar.gz
qemu-73b4987858cd2e0f5bd9ec626f2f95cce6cf84a1.tar.bz2
userfaultfd: use 1ULL to build ioctl masks
There is no need to use the Linux-internal __u64 type, 1ULL is guaranteed to be wide enough. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Link: https://lore.kernel.org/r/20240117160313.175609-1-pbonzini@redhat.com Signed-off-by: Peter Xu <peterx@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/qtest/migration-test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/qtest/migration-test.c b/tests/qtest/migration-test.c
index d3066e1..7675519 100644
--- a/tests/qtest/migration-test.c
+++ b/tests/qtest/migration-test.c
@@ -104,8 +104,8 @@ static bool ufd_version_check(void)
}
uffd_feature_thread_id = api_struct.features & UFFD_FEATURE_THREAD_ID;
- ioctl_mask = (__u64)1 << _UFFDIO_REGISTER |
- (__u64)1 << _UFFDIO_UNREGISTER;
+ ioctl_mask = 1ULL << _UFFDIO_REGISTER |
+ 1ULL << _UFFDIO_UNREGISTER;
if ((api_struct.ioctls & ioctl_mask) != ioctl_mask) {
g_test_message("Skipping test: Missing userfault feature");
return false;