- intel_iommu: Add missed reserved bit check for IEC descriptor - 9pfs: fix crash on 'Treaddir' request - s390x/ap: fix missing subsystem reset registration - qemu/bswap: Undefine CPU_CONVERT() once done - linux-user: Add missing signals in strace output - linux-user: Add missing clock_gettime64() syscall strace Signed-off-by: Gan Qixin <ganqixin@huawei.com> (cherry picked from commit 692bd89e009248b7108baa30dfb2fdeeb55a8bbd)
38 lines
1.2 KiB
Diff
38 lines
1.2 KiB
Diff
From 2eb8238d0a6ed3ba3d85756b7ae954cb11ad6de9 Mon Sep 17 00:00:00 2001
|
|
From: Zhang Jiao <zhangjiao2_yewu@cmss.chinamobile.com>
|
|
Date: Tue, 12 Nov 2024 14:10:39 +0800
|
|
Subject: [PATCH] qemu/bswap: Undefine CPU_CONVERT() once done
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
cheery-pick from 1d73353f236209e9b5987d7c6b30b2a32b739210
|
|
|
|
Better undefined macros once we are done with them,
|
|
like we do few lines later with DO_STN_LDN_P().
|
|
|
|
Signed-off-by: Philippe Mathieu-Daudé philmd@linaro.org
|
|
Reviewed-by: Thomas Huth thuth@redhat.com
|
|
Message-Id: 20241003234211.53644-2-philmd@linaro.org
|
|
Signed-off-by: Zhang Jiao <zhangjiao2_yewu@cmss.chinamobile.com>
|
|
---
|
|
include/qemu/bswap.h | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/include/qemu/bswap.h b/include/qemu/bswap.h
|
|
index 2d3bb8bbed..d8364f5011 100644
|
|
--- a/include/qemu/bswap.h
|
|
+++ b/include/qemu/bswap.h
|
|
@@ -183,6 +183,8 @@ CPU_CONVERT(le, 16, uint16_t)
|
|
CPU_CONVERT(le, 32, uint32_t)
|
|
CPU_CONVERT(le, 64, uint64_t)
|
|
|
|
+#undef CPU_CONVERT
|
|
+
|
|
/*
|
|
* Same as cpu_to_le{16,32}, except that gcc will figure the result is
|
|
* a compile-time constant if you pass in a constant. So this can be
|
|
--
|
|
2.33.0
|
|
|