qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/1] target-arm queue: build breakage fix
@ 2014-01-12 21:42 Peter Maydell
  2014-01-12 21:42 ` [Qemu-devel] [PULL 1/1] arm: fix compile on bigendian host Peter Maydell
  2014-01-13  1:45 ` [Qemu-devel] [PULL 0/1] target-arm queue: build breakage fix Andreas Färber
  0 siblings, 2 replies; 3+ messages in thread
From: Peter Maydell @ 2014-01-12 21:42 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Blue Swirl, qemu-devel, Aurelien Jarno

A very small pullreq containing Alexey's fix for the build
breakage on bigendian hosts which I let slip through into
the previous target-arm pull.

(Is there some way I should be flagging up "build fixes"
in a subject line?)

Please pull.

thanks
-- PMM

The following changes since commit eedc1a5db5e4d941e39e54344322c0b1e89dfdcd:

  Merge remote-tracking branch 'bonzini/scsi-next' into staging (2014-01-10 11:05:17 -0800)

are available in the git repository at:


  git://git.linaro.org/people/pmaydell/qemu-arm.git tags/pull-target-arm-20140112

for you to fetch changes up to 5cd8a11834d1fbb12439604ff6793b9f0bae4a15:

  arm: fix compile on bigendian host (2014-01-12 21:37:37 +0000)

----------------------------------------------------------------
target-arm queue:
 * build fix for bigendian hosts

----------------------------------------------------------------
Alexey Kardashevskiy (1):
      arm: fix compile on bigendian host

 target-arm/cpu.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Qemu-devel] [PULL 1/1] arm: fix compile on bigendian host
  2014-01-12 21:42 [Qemu-devel] [PULL 0/1] target-arm queue: build breakage fix Peter Maydell
@ 2014-01-12 21:42 ` Peter Maydell
  2014-01-13  1:45 ` [Qemu-devel] [PULL 0/1] target-arm queue: build breakage fix Andreas Färber
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2014-01-12 21:42 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Blue Swirl, qemu-devel, Aurelien Jarno

From: Alexey Kardashevskiy <aik@ozlabs.ru>

Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
 target-arm/cpu.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target-arm/cpu.h b/target-arm/cpu.h
index f1307eb..198b6b8 100644
--- a/target-arm/cpu.h
+++ b/target-arm/cpu.h
@@ -73,7 +73,7 @@
  * significant half of a uint64_t struct member.
  */
 #ifdef HOST_WORDS_BIGENDIAN
-#define offsetoflow32(S, M) offsetof(S, M + sizeof(uint32_t))
+#define offsetoflow32(S, M) (offsetof(S, M) + sizeof(uint32_t))
 #else
 #define offsetoflow32(S, M) offsetof(S, M)
 #endif
-- 
1.8.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] target-arm queue: build breakage fix
  2014-01-12 21:42 [Qemu-devel] [PULL 0/1] target-arm queue: build breakage fix Peter Maydell
  2014-01-12 21:42 ` [Qemu-devel] [PULL 1/1] arm: fix compile on bigendian host Peter Maydell
@ 2014-01-13  1:45 ` Andreas Färber
  1 sibling, 0 replies; 3+ messages in thread
From: Andreas Färber @ 2014-01-13  1:45 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Blue Swirl, Aurelien Jarno, qemu-devel, Anthony Liguori,
	Edgar E. Iglesias

Am 12.01.2014 22:42, schrieb Peter Maydell:
> (Is there some way I should be flagging up "build fixes"
> in a subject line?)

It had once been suggested to use
[PATCH buildfix ...] and
[PULL buildfix 0/...]
for that purpose IIRC.

CC'ing Edgar as additional committer.

Andreas

-- 
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-01-13  1:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-12 21:42 [Qemu-devel] [PULL 0/1] target-arm queue: build breakage fix Peter Maydell
2014-01-12 21:42 ` [Qemu-devel] [PULL 1/1] arm: fix compile on bigendian host Peter Maydell
2014-01-13  1:45 ` [Qemu-devel] [PULL 0/1] target-arm queue: build breakage fix Andreas Färber

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).