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.
Use __attribute__((__mode__(__pointer__))) to get the compilers default
pointer type, which matches the pre-existing inttypes.h
Fix the identified breakage with ELF_PRPTRVAL
Compile tested on all architectures, with a manual printk() to trigger any
potential -Wformat issues.
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
#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) \
typedef __u64 __le64;
typedef __u64 __be64;
-typedef unsigned long uintptr_t;
+typedef unsigned int __attribute__((__mode__(__pointer__))) uintptr_t;
typedef bool bool_t;
#define test_and_set_bool(b) xchg(&(b), true)