qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 07/16] linux-user: fix struct target_epoll_event lay


From: Paul Burton
Subject: [Qemu-devel] [PATCH 07/16] linux-user: fix struct target_epoll_event layout for MIPS
Date: Sun, 15 Jun 2014 17:18:24 +0100

MIPS requires the pad field to 64b-align the data field just as ARM
does.

Signed-off-by: Paul Burton <address@hidden>
---
 linux-user/syscall_defs.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h
index 69c3982..9fcb723 100644
--- 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;
-#ifdef TARGET_ARM
+#if defined(TARGET_ARM) || defined(TARGET_MIPS)
     uint32_t __pad;
 #endif
     target_epoll_data_t data;
-- 
2.0.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]