xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
From: Roger Pau Monne <roger.pau@citrix.com>
To: xen-devel@lists.xenproject.org
Cc: Ian Jackson <Ian.Jackson@eu.citrix.com>,
	Ian Campbell <ian.campbell@citrix.com>,
	Roger Pau Monne <roger.pau@citrix.com>
Subject: [PATCH v2 06/17] libxc: remove broken endianess gate on lz4 decompressor
Date: Mon, 2 Jun 2014 17:08:12 +0200	[thread overview]
Message-ID: <1401721703-34974-7-git-send-email-roger.pau@citrix.com> (raw)
In-Reply-To: <1401721703-34974-1-git-send-email-roger.pau@citrix.com>

The lz4 decompressor had wrongly implemented a gate between
little-endian and big-endian versions of get_unaligned_le{16/32},
which turns out to be broken on all architectures supported by Xen,
because __LITTLE_ENDIAN is not defined. Instead of trying to fix
this, just implement the little-endian version and remove the switch.

Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Cc: Ian Jackson <Ian.Jackson@eu.citrix.com>
Cc: Ian Campbell <ian.campbell@citrix.com>
---
 tools/libxc/xc_dom_decompress_lz4.c |    1 -
 xen/common/lz4/defs.h               |   14 --------------
 2 files changed, 0 insertions(+), 15 deletions(-)

diff --git a/tools/libxc/xc_dom_decompress_lz4.c b/tools/libxc/xc_dom_decompress_lz4.c
index 08272fe..490ec56 100644
--- a/tools/libxc/xc_dom_decompress_lz4.c
+++ b/tools/libxc/xc_dom_decompress_lz4.c
@@ -1,7 +1,6 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <inttypes.h>
-#include <endian.h>
 #include <stdint.h>
 
 #include "xg_private.h"
diff --git a/xen/common/lz4/defs.h b/xen/common/lz4/defs.h
index f46df08..d886a4e 100644
--- a/xen/common/lz4/defs.h
+++ b/xen/common/lz4/defs.h
@@ -12,7 +12,6 @@
 #include <asm/byteorder.h>
 #endif
 
-#ifdef __LITTLE_ENDIAN
 static inline u16 INIT get_unaligned_le16(const void *p)
 {
 	return le16_to_cpup(p);
@@ -22,19 +21,6 @@ static inline u32 INIT get_unaligned_le32(const void *p)
 {
 	return le32_to_cpup(p);
 }
-#else
-#include <asm/unaligned.h>
-
-static inline u16 INIT get_unaligned_le16(const void *p)
-{
-	return le16_to_cpu(__get_unaligned(p, 2));
-}
-
-static inline u32 INIT get_unaligned_le32(void *p)
-{
-	return le32_to_cpu(__get_unaligned(p, 4));
-}
-#endif
 
 /*
  * Detects 64 bits mode
-- 
1.7.7.5 (Apple Git-26)


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

  parent reply	other threads:[~2014-06-02 15:08 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-02 15:08 [PATCH v2 00/17] tools: add support for FreeBSD Roger Pau Monne
2014-06-02 15:08 ` [PATCH v2 01/17] configure: make the libaio test conditional on blktap1 Roger Pau Monne
2014-06-05 15:06   ` Ian Campbell
2014-06-05 15:49     ` Roger Pau Monné
2014-06-06  9:35       ` Ian Campbell
2014-06-02 15:08 ` [PATCH v2 02/17] configure: disable qemu-trad on FreeBSD systems by default Roger Pau Monne
2014-06-05 15:07   ` Ian Campbell
2014-06-02 15:08 ` [PATCH v2 03/17] configure: disable ROMBIOS if qemu-trad is disabled Roger Pau Monne
2014-06-05 15:09   ` Ian Campbell
2014-06-02 15:08 ` [PATCH v2 04/17] include: import FreeBSD headers for evtchn and privcmd devices Roger Pau Monne
2014-06-02 15:08 ` [PATCH v2 05/17] libxc: add support for FreeBSD Roger Pau Monne
2014-06-05 15:11   ` Ian Campbell
2014-06-02 15:08 ` Roger Pau Monne [this message]
2014-06-05 15:14   ` [PATCH v2 06/17] libxc: remove broken endianess gate on lz4 decompressor Ian Campbell
2014-06-02 15:08 ` [PATCH v2 07/17] xenstored: unify xenstored OS-specific bits Roger Pau Monne
2014-06-05 15:19   ` Ian Campbell
2014-06-02 15:08 ` [PATCH v2 08/17] xenstored: add FreeBSD xenstored device paths Roger Pau Monne
2014-06-05 15:20   ` Ian Campbell
2014-06-06  9:15     ` Roger Pau Monné
2014-06-06  9:36       ` Ian Campbell
2014-06-02 15:08 ` [PATCH v2 09/17] console: add FreeBSD includes Roger Pau Monne
2014-06-05 15:20   ` Ian Campbell
2014-06-02 15:08 ` [PATCH v2 10/17] init: add FreeBSD xencommons init script Roger Pau Monne
2014-06-05 15:24   ` Ian Campbell
2014-06-02 15:08 ` [PATCH v2 11/17] hotplug: add FreeBSD vif-bridge Roger Pau Monne
2014-06-05 15:26   ` Ian Campbell
2014-06-05 15:32     ` Roger Pau Monné
2014-06-05 15:34       ` Ian Campbell
2014-06-05 15:36         ` Roger Pau Monné
2014-06-02 15:08 ` [PATCH v2 12/17] libxl: add FreeBSD OS support Roger Pau Monne
2014-06-05 15:33   ` Ian Campbell
2014-06-02 15:08 ` [PATCH v2 13/17] libxl: add support for FreeBSD uuid implementation Roger Pau Monne
2014-06-05 15:39   ` Ian Campbell
2014-06-02 15:08 ` [PATCH v2 14/17] libxl: only include utmp.h if it's present Roger Pau Monne
2014-06-02 15:08 ` [PATCH v2 15/17] libxl: allow usage of char devices as block backends Roger Pau Monne
2014-06-05 15:41   ` Ian Campbell
2014-06-05 15:44     ` Roger Pau Monné
2014-06-05 15:45       ` Ian Campbell
2014-06-02 15:08 ` [PATCH v2 16/17] hvmloader: remove size_t typedef and include stddef.h Roger Pau Monne
2014-06-02 15:08 ` [PATCH v2 17/17] build: export linker emulation parameter to SeaBIOS Roger Pau Monne
2014-06-05 15:42   ` Ian Campbell
2014-06-18 16:41 ` [PATCH v2 00/17] tools: add support for FreeBSD Ian Campbell

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=1401721703-34974-7-git-send-email-roger.pau@citrix.com \
    --to=roger.pau@citrix.com \
    --cc=Ian.Jackson@eu.citrix.com \
    --cc=ian.campbell@citrix.com \
    --cc=xen-devel@lists.xenproject.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).