From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51859) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WwD95-000536-Dv for qemu-devel@nongnu.org; Sun, 15 Jun 2014 12:19:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WwD8z-00065Y-LM for qemu-devel@nongnu.org; Sun, 15 Jun 2014 12:19:03 -0400 Received: from mail-wg0-x22f.google.com ([2a00:1450:400c:c00::22f]:37453) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WwD8z-00065N-EV for qemu-devel@nongnu.org; Sun, 15 Jun 2014 12:18:57 -0400 Received: by mail-wg0-f47.google.com with SMTP id k14so4637210wgh.30 for ; Sun, 15 Jun 2014 09:18:56 -0700 (PDT) Sender: Paul Burton From: Paul Burton Date: Sun, 15 Jun 2014 17:18:24 +0100 Message-Id: <1402849113-11402-8-git-send-email-paul@archlinuxmips.org> In-Reply-To: <1402849113-11402-1-git-send-email-paul@archlinuxmips.org> References: <1402849113-11402-1-git-send-email-paul@archlinuxmips.org> Subject: [Qemu-devel] [PATCH 07/16] linux-user: fix struct target_epoll_event layout for MIPS List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Riku Voipio , Paul Burton MIPS requires the pad field to 64b-align the data field just as ARM does. Signed-off-by: Paul Burton --- 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