016a62
From d032dae613dc006c91ad8581f203af1bd4bdbf9c Mon Sep 17 00:00:00 2001
016a62
From: Thomas Huth <thuth@redhat.com>
016a62
Date: Mon, 14 Oct 2019 10:06:36 +0100
016a62
Subject: [PATCH 11/21] s390-bios: ptr2u32 and u32toptr
016a62
016a62
RH-Author: Thomas Huth <thuth@redhat.com>
016a62
Message-id: <20191014100645.22862-9-thuth@redhat.com>
016a62
Patchwork-id: 91788
016a62
O-Subject: [RHEL-8.2.0 qemu-kvm PATCH v2 08/17] s390-bios: ptr2u32 and u32toptr
016a62
Bugzilla: 1664376
016a62
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
016a62
RH-Acked-by: David Hildenbrand <david@redhat.com>
016a62
RH-Acked-by: Jens Freimann <jfreimann@redhat.com>
016a62
016a62
From: "Jason J. Herne" <jjherne@linux.ibm.com>
016a62
016a62
Introduce inline functions to convert between pointers and unsigned 32-bit
016a62
ints. These are used to hide the ugliness required to  avoid compiler
016a62
warnings.
016a62
016a62
Signed-off-by: Jason J. Herne <jjherne@linux.ibm.com>
016a62
Acked-by: Cornelia Huck <cohuck@redhat.com>
016a62
Reviewed-by: Thomas Huth <thuth@redhat.com>
016a62
Message-Id: <1554388475-18329-8-git-send-email-jjherne@linux.ibm.com>
016a62
Signed-off-by: Thomas Huth <thuth@redhat.com>
016a62
(cherry picked from commit 1fb3e5cde8dcd9b5917aea9a0b2918e16be8be1e)
016a62
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
016a62
---
016a62
 pc-bios/s390-ccw/helper.h | 31 +++++++++++++++++++++++++++++++
016a62
 1 file changed, 31 insertions(+)
016a62
 create mode 100644 pc-bios/s390-ccw/helper.h
016a62
016a62
diff --git a/pc-bios/s390-ccw/helper.h b/pc-bios/s390-ccw/helper.h
016a62
new file mode 100644
016a62
index 0000000..78d5bc7
016a62
--- /dev/null
016a62
+++ b/pc-bios/s390-ccw/helper.h
016a62
@@ -0,0 +1,31 @@
016a62
+/*
016a62
+ * Helper Functions
016a62
+ *
016a62
+ * Copyright (c) 2019 IBM Corp.
016a62
+ *
016a62
+ * Author(s): Jason J. Herne <jjherne@us.ibm.com>
016a62
+ *
016a62
+ * This work is licensed under the terms of the GNU GPL, version 2 or (at
016a62
+ * your option) any later version. See the COPYING file in the top-level
016a62
+ * directory.
016a62
+ */
016a62
+
016a62
+#ifndef S390_CCW_HELPER_H
016a62
+#define S390_CCW_HELPER_H
016a62
+
016a62
+#include "s390-ccw.h"
016a62
+
016a62
+/* Avoids compiler warnings when casting a pointer to a u32 */
016a62
+static inline uint32_t ptr2u32(void *ptr)
016a62
+{
016a62
+    IPL_assert((uint64_t)ptr <= 0xffffffff, "ptr2u32: ptr too large");
016a62
+    return (uint32_t)(uint64_t)ptr;
016a62
+}
016a62
+
016a62
+/* Avoids compiler warnings when casting a u32 to a pointer */
016a62
+static inline void *u32toptr(uint32_t n)
016a62
+{
016a62
+    return (void *)(uint64_t)n;
016a62
+}
016a62
+
016a62
+#endif
016a62
-- 
016a62
1.8.3.1
016a62