[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[qemu-s390x] [PATCH v5 09/15] s390-bios: ptr2u32 and u32toptr
From: |
Jason J. Herne |
Subject: |
[qemu-s390x] [PATCH v5 09/15] s390-bios: ptr2u32 and u32toptr |
Date: |
Wed, 13 Mar 2019 12:31:16 -0400 |
Introduce inline functions to convert between pointers and unsigned 32-bit
ints. These are used to hide the ugliness required to avoid compiler
warnings.
Signed-off-by: Jason J. Herne <address@hidden>
Acked-by: Cornelia Huck <address@hidden>
Reviewed-by: Thomas Huth <address@hidden>
---
pc-bios/s390-ccw/helper.h | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
create mode 100644 pc-bios/s390-ccw/helper.h
diff --git a/pc-bios/s390-ccw/helper.h b/pc-bios/s390-ccw/helper.h
new file mode 100644
index 0000000..78d5bc7
--- /dev/null
+++ b/pc-bios/s390-ccw/helper.h
@@ -0,0 +1,31 @@
+/*
+ * Helper Functions
+ *
+ * Copyright (c) 2019 IBM Corp.
+ *
+ * Author(s): Jason J. Herne <address@hidden>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or (at
+ * your option) any later version. See the COPYING file in the top-level
+ * directory.
+ */
+
+#ifndef S390_CCW_HELPER_H
+#define S390_CCW_HELPER_H
+
+#include "s390-ccw.h"
+
+/* Avoids compiler warnings when casting a pointer to a u32 */
+static inline uint32_t ptr2u32(void *ptr)
+{
+ IPL_assert((uint64_t)ptr <= 0xffffffff, "ptr2u32: ptr too large");
+ return (uint32_t)(uint64_t)ptr;
+}
+
+/* Avoids compiler warnings when casting a u32 to a pointer */
+static inline void *u32toptr(uint32_t n)
+{
+ return (void *)(uint64_t)n;
+}
+
+#endif
--
2.7.4
- Re: [qemu-s390x] [PATCH v5 11/15] s390-bios: cio error handling, (continued)
- [qemu-s390x] [PATCH v5 10/15] s390-bios: Support for running format-0/1 channel programs, Jason J. Herne, 2019/03/13
- [qemu-s390x] [PATCH v5 08/15] s390-bios: Map low core memory, Jason J. Herne, 2019/03/13
- [qemu-s390x] [PATCH v5 07/15] s390-bios: Decouple channel i/o logic from virtio, Jason J. Herne, 2019/03/13
- [qemu-s390x] [PATCH v5 12/15] s390-bios: Refactor virtio to run channel programs via cio, Jason J. Herne, 2019/03/13
- [qemu-s390x] [PATCH v5 09/15] s390-bios: ptr2u32 and u32toptr,
Jason J. Herne <=
- [qemu-s390x] [PATCH v5 05/15] s390-bios: Factor finding boot device out of virtio code path, Jason J. Herne, 2019/03/13
- [qemu-s390x] [PATCH v5 03/15] s390-bios: decouple common boot logic from virtio, Jason J. Herne, 2019/03/13
- [qemu-s390x] [PATCH v5 06/15] s390-bios: Clean up cio.h, Jason J. Herne, 2019/03/13
- [qemu-s390x] [PATCH v5 04/15] s390-bios: Extend find_dev() for non-virtio devices, Jason J. Herne, 2019/03/13
- [qemu-s390x] [PATCH v5 01/15] s390 vfio-ccw: Add bootindex property and IPLB data, Jason J. Herne, 2019/03/13
- [qemu-s390x] [PATCH v5 02/15] s390-bios: decouple cio setup from virtio, Jason J. Herne, 2019/03/13
- Re: [qemu-s390x] [Qemu-devel] [PATCH v5 00/15] s390: vfio-ccw dasd ipl support, no-reply, 2019/03/13
- Re: [qemu-s390x] [Qemu-devel] [PATCH v5 00/15] s390: vfio-ccw dasd ipl support, no-reply, 2019/03/13
- Re: [qemu-s390x] [Qemu-devel] [PATCH v5 00/15] s390: vfio-ccw dasd ipl support, no-reply, 2019/03/13