linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "H. Peter Anvin" <hpa@zytor.com>
To: Sam Ravnborg <sam@ravnborg.org>,
	linux-kernel@vger.kernel.org, linux-kbuild@vger.kernel.org,
	linux-arch@vger.kernel.org
Cc: Andy Lutomirski <luto@amacapital.net>,
	Andrew Morton <akpm@linux-foundation.org>,
	Ingo Molnar <mingo@kernel.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	"H. Peter Anvin" <hpa@zytor.com>
Subject: [PATCH RFC 08/10] tools: Move unaligned common infrastructure into <tools/unaligned.h>
Date: Tue, 10 Jun 2014 16:13:12 -0700	[thread overview]
Message-ID: <1402441994-16780-9-git-send-email-hpa@zytor.com> (raw)
In-Reply-To: <1402441994-16780-1-git-send-email-hpa@zytor.com>

Move common includes and infrastructure into <tools/unaligned.h>.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
---
 tools/include/tools/unaligned.h              | 34 ++++++++++++++++++++++++++++
 tools/include/tools/unaligned/be_bswap.h     |  2 --
 tools/include/tools/unaligned/be_byteshift.h |  2 --
 tools/include/tools/unaligned/be_direct.h    |  2 --
 tools/include/tools/unaligned/be_endian.h    |  6 -----
 tools/include/tools/unaligned/be_struct.h    | 14 ------------
 tools/include/tools/unaligned/le_bswap.h     |  2 --
 tools/include/tools/unaligned/le_byteshift.h |  2 --
 tools/include/tools/unaligned/le_direct.h    |  2 --
 tools/include/tools/unaligned/le_endian.h    |  6 -----
 tools/include/tools/unaligned/le_struct.h    | 12 ----------
 11 files changed, 34 insertions(+), 50 deletions(-)

diff --git a/tools/include/tools/unaligned.h b/tools/include/tools/unaligned.h
index f89c089b6148..a3d43989bd25 100644
--- a/tools/include/tools/unaligned.h
+++ b/tools/include/tools/unaligned.h
@@ -1,2 +1,36 @@
+#ifndef TOOLS_UNALIGNED_H
+#define TOOLS_UNALIGNED_H
+
+#include <stdint.h>
+
+#ifndef _BSD_SOURCE
+# define _BSD_SOURCE 1
+#endif
+#include <endian.h>
+
+#ifdef __GNUC__
+
+struct _packed_u16_struct {
+	uint16_t v;
+} __attribute__((packed));
+
+struct _packed_u32_struct {
+	uint32_t v;
+} __attribute__((packed));
+
+struct _packed_u64_struct {
+	uint64_t v;
+} __attribute__((packed));
+
+#define TOOLS_UNALIGNED_GCC ((__GNUC__ << 16) + (__GNUC_MINOR__ << 8) + __GNUC_PATCHLEVEL__)
+
+#else
+
+#define TOOLS_UNALIGNED_GCC 0
+
+#endif /* __GNUC__ */
+
 #include <tools/unaligned/le_byteshift.h>
 #include <tools/unaligned/be_byteshift.h>
+
+#endif /* TOOLS_UNALIGNED_H */
diff --git a/tools/include/tools/unaligned/be_bswap.h b/tools/include/tools/unaligned/be_bswap.h
index 5e63da922d23..72855d3af5f2 100644
--- a/tools/include/tools/unaligned/be_bswap.h
+++ b/tools/include/tools/unaligned/be_bswap.h
@@ -1,8 +1,6 @@
 #ifndef TOOLS_BE_BSWAP_H
 #define TOOLS_BE_BSWAP_H
 
-#include <stdint.h>
-
 static inline uint16_t get_unaligned_be16(const void *_p)
 {
 	return __builtin_bswap16(get_unaligned_le16(_p));
diff --git a/tools/include/tools/unaligned/be_byteshift.h b/tools/include/tools/unaligned/be_byteshift.h
index 068a5a8b47b2..ee0ff62c63cc 100644
--- a/tools/include/tools/unaligned/be_byteshift.h
+++ b/tools/include/tools/unaligned/be_byteshift.h
@@ -1,8 +1,6 @@
 #ifndef TOOLS_BE_BYTESHIFT_H
 #define TOOLS_BE_BYTESHIFT_H
 
-#include <stdint.h>
-
 static inline uint16_t get_unaligned_be16(const void *_p)
 {
 	const uint8_t *p = _p;
diff --git a/tools/include/tools/unaligned/be_direct.h b/tools/include/tools/unaligned/be_direct.h
index 4f446856aa84..1ce1c4a94a01 100644
--- a/tools/include/tools/unaligned/be_direct.h
+++ b/tools/include/tools/unaligned/be_direct.h
@@ -1,8 +1,6 @@
 #ifndef TOOLS_BE_DIRECT_H
 #define TOOLS_BE_DIRECT_H
 
-#include <stdint.h>
-
 static inline uint16_t get_unaligned_be16(const void *_p)
 {
 	const uint16_t *p = _p;
diff --git a/tools/include/tools/unaligned/be_endian.h b/tools/include/tools/unaligned/be_endian.h
index 52ee4a47e23c..bed93fd0c88b 100644
--- a/tools/include/tools/unaligned/be_endian.h
+++ b/tools/include/tools/unaligned/be_endian.h
@@ -1,12 +1,6 @@
 #ifndef TOOLS_BE_ENDIAN_H
 #define TOOLS_BE_ENDIAN_H
 
-#ifndef _BSD_SOURCE
-# define _BSD_SOURCE 1
-#endif
-#include <endian.h>
-#include <stdint.h>
-
 static inline uint16_t get_unaligned_be16(const void *_p)
 {
 	return be16toh(get_unaligned_le16(_p));
diff --git a/tools/include/tools/unaligned/be_struct.h b/tools/include/tools/unaligned/be_struct.h
index 2543fee4acda..127ecfdc1ac0 100644
--- a/tools/include/tools/unaligned/be_struct.h
+++ b/tools/include/tools/unaligned/be_struct.h
@@ -1,20 +1,6 @@
 #ifndef TOOLS_BE_STRUCT_H
 #define TOOLS_BE_STRUCT_H
 
-#include <stdint.h>
-
-struct _packed_u16_struct {
-	uint16_t v;
-} __attribute__((packed));
-
-struct _packed_u32_struct {
-	uint32_t v;
-} __attribute__((packed));
-
-struct _packed_u64_struct {
-	uint64_t v;
-} __attribute__((packed));
-
 static inline uint16_t get_unaligned_be16(const void *_p)
 {
 	const struct _packed_u16_struct *p = _p;
diff --git a/tools/include/tools/unaligned/le_bswap.h b/tools/include/tools/unaligned/le_bswap.h
index 199b42a7b862..f9717b7e072d 100644
--- a/tools/include/tools/unaligned/le_bswap.h
+++ b/tools/include/tools/unaligned/le_bswap.h
@@ -1,8 +1,6 @@
 #ifndef TOOLS_LE_BSWAP_H
 #define TOOLS_LE_BSWAP_H
 
-#include <stdint.h>
-
 static inline uint16_t get_unaligned_le16(const void *_p)
 {
 	return __builtin_bswap16(get_unaligned_be16(_p));
diff --git a/tools/include/tools/unaligned/le_byteshift.h b/tools/include/tools/unaligned/le_byteshift.h
index dfd5d42b9783..bf54188b5210 100644
--- a/tools/include/tools/unaligned/le_byteshift.h
+++ b/tools/include/tools/unaligned/le_byteshift.h
@@ -1,8 +1,6 @@
 #ifndef TOOLS_LE_BYTESHIFT_H
 #define TOOLS_LE_BYTESHIFT_H
 
-#include <stdint.h>
-
 static inline uint16_t get_unaligned_le16(const void *_p)
 {
 	const uint8_t *p = _p;
diff --git a/tools/include/tools/unaligned/le_direct.h b/tools/include/tools/unaligned/le_direct.h
index 17b773284edd..b599020be21f 100644
--- a/tools/include/tools/unaligned/le_direct.h
+++ b/tools/include/tools/unaligned/le_direct.h
@@ -1,8 +1,6 @@
 #ifndef TOOLS_LE_DIRECT_H
 #define TOOLS_LE_DIRECT_H
 
-#include <stdint.h>
-
 static inline uint16_t get_unaligned_le16(const void *_p)
 {
 	const uint16_t *p = _p;
diff --git a/tools/include/tools/unaligned/le_endian.h b/tools/include/tools/unaligned/le_endian.h
index bc8c2d41be0e..a412af39eda9 100644
--- a/tools/include/tools/unaligned/le_endian.h
+++ b/tools/include/tools/unaligned/le_endian.h
@@ -1,12 +1,6 @@
 #ifndef TOOLS_LE_ENDIAN_H
 #define TOOLS_LE_ENDIAN_H
 
-#ifndef _BSD_SOURCE
-# define _BSD_SOURCE 1
-#endif
-#include <endian.h>
-#include <stdint.h>
-
 static inline uint16_t get_unaligned_le16(const void *_p)
 {
 	return le16toh(get_unaligned_be16(_p));
diff --git a/tools/include/tools/unaligned/le_struct.h b/tools/include/tools/unaligned/le_struct.h
index f6f271a5824b..b1ac490dcb3f 100644
--- a/tools/include/tools/unaligned/le_struct.h
+++ b/tools/include/tools/unaligned/le_struct.h
@@ -3,18 +3,6 @@
 
 #include <stdint.h>
 
-struct _packed_u16_struct {
-	uint16_t v;
-} __attribute__((packed));
-
-struct _packed_u32_struct {
-	uint32_t v;
-} __attribute__((packed));
-
-struct _packed_u64_struct {
-	uint64_t v;
-} __attribute__((packed));
-
 static inline uint16_t get_unaligned_le16(const void *_p)
 {
 	const struct _packed_u16_struct *p = _p;
-- 
1.9.3


  parent reply	other threads:[~2014-06-10 23:14 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-10 23:13 [PATCH RFC 00/10] tools: Revamp the unaligned endian access functions H. Peter Anvin
2014-06-10 23:13 ` [PATCH RFC 01/10] tools: Remove double-underscore symbols from user space byteshift functions H. Peter Anvin
2014-06-10 23:13 ` [PATCH RFC 02/10] tools: Create <tools/unaligned.h> and an unaligned subdirectory H. Peter Anvin
2014-06-10 23:13 ` [PATCH RFC 03/10] tools: Add le_direct/be_direct methods for unaligned access H. Peter Anvin
2014-06-10 23:25   ` Andy Lutomirski
2014-06-10 23:30     ` H. Peter Anvin
2014-06-10 23:33       ` Andy Lutomirski
2014-06-10 23:41         ` H. Peter Anvin
2014-06-10 23:13 ` [PATCH RFC 04/10] tools: Add packed struct method for unaligned references H. Peter Anvin
2014-06-10 23:13 ` [PATCH RFC 05/10] tools: Add <endian.h> libc support " H. Peter Anvin
2014-06-10 23:13 ` [PATCH RFC 06/10] tools: Add gcc __builtin_bswap*() " H. Peter Anvin
2014-06-10 23:13 ` [PATCH RFC 07/10] tools: Remove leading underscores from header guards H. Peter Anvin
2014-06-10 23:13 ` H. Peter Anvin [this message]
2014-06-10 23:13 ` [PATCH RFC 09/10] tools: Add common infrastructure for byte swapping H. Peter Anvin
2014-06-10 23:13 ` [PATCH RFC 10/10] tools: Use reasonable defaults for the default access H. Peter Anvin
2014-06-11 19:21 ` [PATCH RFC 00/10] tools: Revamp the unaligned endian access functions Sam Ravnborg
2014-06-11 21:52   ` H. Peter Anvin
2014-06-13 20:04     ` Sam Ravnborg

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=1402441994-16780-9-git-send-email-hpa@zytor.com \
    --to=hpa@zytor.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-kbuild@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luto@amacapital.net \
    --cc=mingo@kernel.org \
    --cc=sam@ravnborg.org \
    --cc=tglx@linutronix.de \
    /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).