projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0fa82d3
)
linux-user: fix struct target_epoll_event layout for MIPS
author
Paul Burton
<paul@archlinuxmips.org>
Sun, 22 Jun 2014 10:25:39 +0000
(11:25 +0100)
committer
Riku Voipio
<riku.voipio@linaro.org>
Sun, 29 Jun 2014 11:19:59 +0000
(14:19 +0300)
MIPS requires the pad field to 64b-align the data field just as ARM
does.
Signed-off-by: Paul Burton <paul@archlinuxmips.org>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
linux-user/syscall_defs.h
patch
|
blob
|
history
diff --git
a/linux-user/syscall_defs.h
b/linux-user/syscall_defs.h
index 69c3982ee655d7276ecfe7975147e2fcdf75f45e..e379b45cabfe9c03bbc1c0937638ae0116fd2828 100644
(file)
--- a/
linux-user/syscall_defs.h
+++ b/
linux-user/syscall_defs.h
@@
-2528,7
+2528,7
@@
typedef union target_epoll_data {
struct target_epoll_event {
uint32_t events;
-#if
def TARGET_ARM
+#if
defined(TARGET_ARM) || defined(TARGET_MIPS) || defined(TARGET_MIPS64)
uint32_t __pad;
#endif
target_epoll_data_t data;