public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Randy Dunlap <rdunlap@infradead.org>
To: Peter Foley <pefoley2@pefoley.com>, linux-kernel@vger.kernel.org
Cc: linux-doc@vger.kernel.org, sudeep.dutt@intel.com,
	nikhil.rao@intel.com, ashutosh.dixit@intel.com,
	akpm@linux-foundation.org, gregkh@linuxfoundation.org
Subject: Re: [PATCH] tools: add more endian.h macros
Date: Thu, 25 Sep 2014 10:37:41 -0700	[thread overview]
Message-ID: <542452E5.8040806@infradead.org> (raw)
In-Reply-To: <1411512653-17093-1-git-send-email-pefoley2@pefoley.com>

On 09/23/14 15:50, Peter Foley wrote:
> Add some more macros to tools/endian.h to allow mpssd to be compiled
> against glibc < 2.9.
> 
> Signed-off-by: Peter Foley <pefoley2@pefoley.com>

Applied.  Thanks.

> Cc: rdunlap@infradead.org
> Cc: linux-doc@vger.kernel.org
> Cc: sudeep.dutt@intel.com
> Cc: nikhil.rao@intel.com
> Cc: ashutosh.dixit@intel.com
> Cc: akpm@linux-foundation.org
> Cc: gregkh@linuxfoundation.org
> ---
>  tools/include/tools/endian.h | 24 ++++++++++++++++++++++++
>  1 file changed, 24 insertions(+)
> 
> diff --git a/tools/include/tools/endian.h b/tools/include/tools/endian.h
> index 5d42e20..8001194 100644
> --- a/tools/include/tools/endian.h
> +++ b/tools/include/tools/endian.h
> @@ -15,6 +15,18 @@
>  #define htole64(x) (x)
>  #endif
>  
> +#ifndef le16toh
> +#define le16toh(x) (x)
> +#endif
> +
> +#ifndef le32toh
> +#define le32toh(x) (x)
> +#endif
> +
> +#ifndef le64toh
> +#define le64toh(x) (x)
> +#endif
> +
>  #else /* __BYTE_ORDER */
>  
>  #ifndef htole16
> @@ -27,6 +39,18 @@
>  #define htole64(x) __bswap_64(x)
>  #endif
>  
> +#ifndef le16toh
> +#define le16toh(x) __bswap_16(x)
> +#endif
> +
> +#ifndef le32toh
> +#define le32toh(x) __bswap_32(x)
> +#endif
> +
> +#ifndef le64toh
> +#define le64toh(x) __bswap_64(x)
> +#endif
> +
>  #endif
>  
>  #endif /* _TOOLS_ENDIAN_H */
> 


-- 
~Randy

      reply	other threads:[~2014-09-25 17:37 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-23 22:50 [PATCH] tools: add more endian.h macros Peter Foley
2014-09-25 17:37 ` Randy Dunlap [this message]

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=542452E5.8040806@infradead.org \
    --to=rdunlap@infradead.org \
    --cc=akpm@linux-foundation.org \
    --cc=ashutosh.dixit@intel.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nikhil.rao@intel.com \
    --cc=pefoley2@pefoley.com \
    --cc=sudeep.dutt@intel.com \
    /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