From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Xen-devel <xen-devel@lists.xen.org>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>,
Julien Grall <julien.grall@arm.com>,
Stefano Stabellini <sstabellini@kernel.org>,
Tim Deegan <tim@xen.org>, Jan Beulich <JBeulich@suse.com>
Subject: [PATCH 2/3] xen/types: Correct the definition of uintptr_t
Date: Mon, 1 Aug 2016 14:14:16 +0100 [thread overview]
Message-ID: <1470057257-23756-2-git-send-email-andrew.cooper3@citrix.com> (raw)
In-Reply-To: <1470057257-23756-1-git-send-email-andrew.cooper3@citrix.com>
uintptr_t is specified as unsigned int in 32bit, not unsigned long. This is
why, when copying inttypes.h from GCC, the use of PRIxPTR and similar is
broken for 32bit builds.
Fix the identified breakage with ELF_PRPTRVAL
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
---
CC: Jan Beulich <JBeulich@suse.com>
CC: Tim Deegan <tim@xen.org>
CC: Stefano Stabellini <sstabellini@kernel.org>
CC: Julien Grall <julien.grall@arm.com>
---
xen/include/xen/libelf.h | 10 +---------
xen/include/xen/types.h | 4 ++++
2 files changed, 5 insertions(+), 9 deletions(-)
diff --git a/xen/include/xen/libelf.h b/xen/include/xen/libelf.h
index 95b5370..d430c83 100644
--- a/xen/include/xen/libelf.h
+++ b/xen/include/xen/libelf.h
@@ -83,15 +83,7 @@ typedef uintptr_t elf_ptrval;
#define ELF_HANDLE_DECL(structname) structname##_handle
/* Provides a type declaration for a HANDLE. */
-#ifdef __XEN__
-# define ELF_PRPTRVAL "lx"
- /*
- * PRIxPTR is misdefined in xen/include/xen/inttypes.h, on 32-bit,
- * to "x", when in fact uintptr_t is an unsigned long.
- */
-#else
-# define ELF_PRPTRVAL PRIxPTR
-#endif
+#define ELF_PRPTRVAL PRIxPTR
/* printf format a la PRId... for a PTRVAL */
#define ELF_DEFINE_HANDLE(structname) \
diff --git a/xen/include/xen/types.h b/xen/include/xen/types.h
index c8092d0..44ae81c 100644
--- a/xen/include/xen/types.h
+++ b/xen/include/xen/types.h
@@ -59,7 +59,11 @@ typedef __u32 __be32;
typedef __u64 __le64;
typedef __u64 __be64;
+#if BITS_PER_LONG == 64
typedef unsigned long uintptr_t;
+#elif BITS_PER_LONG == 32
+typedef unsigned int uintptr_t;
+#endif
typedef bool bool_t;
#define test_and_set_bool(b) xchg(&(b), true)
--
2.1.4
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-08-01 13:14 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-01 13:14 [PATCH 1/3] xen/types: Alter typedef for bool_t Andrew Cooper
2016-08-01 13:14 ` Andrew Cooper [this message]
2016-08-01 15:51 ` [PATCH 2/3] xen/types: Correct the definition of uintptr_t Jan Beulich
2016-08-01 16:08 ` Andrew Cooper
2016-08-01 16:26 ` Jan Beulich
2016-08-01 16:34 ` [PATCH v2 " Andrew Cooper
2016-08-02 7:19 ` Jan Beulich
2016-08-01 13:14 ` [PATCH 3/3] xen/common: Sort the obj build order Andrew Cooper
2016-08-01 15:52 ` Jan Beulich
2016-08-01 15:44 ` [PATCH 1/3] xen/types: Alter typedef for bool_t Jan Beulich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1470057257-23756-2-git-send-email-andrew.cooper3@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=JBeulich@suse.com \
--cc=julien.grall@arm.com \
--cc=sstabellini@kernel.org \
--cc=tim@xen.org \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).