From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50531) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eYbkx-00050B-IB for qemu-devel@nongnu.org; Mon, 08 Jan 2018 13:02:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eYbkw-00067O-37 for qemu-devel@nongnu.org; Mon, 08 Jan 2018 13:02:43 -0500 Received: from mail-qt0-x243.google.com ([2607:f8b0:400d:c0d::243]:39081) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eYbkv-00066w-W2 for qemu-devel@nongnu.org; Mon, 08 Jan 2018 13:02:42 -0500 Received: by mail-qt0-x243.google.com with SMTP id k19so14684092qtj.6 for ; Mon, 08 Jan 2018 10:02:41 -0800 (PST) Sender: =?UTF-8?Q?Philippe_Mathieu=2DDaud=C3=A9?= From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Mon, 8 Jan 2018 15:02:25 -0300 Message-Id: <20180108180231.21122-2-f4bug@amsat.org> In-Reply-To: <20180108180231.21122-1-f4bug@amsat.org> References: <20180108180231.21122-1-f4bug@amsat.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 1/7] net: struct MACAddr can use the QEMU_PACKED macro List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jiri Pirko , Jason Wang , Dmitry Fleytman Cc: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , qemu-devel@nongnu.org, Eric Blake Signed-off-by: Philippe Mathieu-Daudé --- include/net/net.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/net/net.h b/include/net/net.h index 4afac1a9dd..70f5bb3419 100644 --- a/include/net/net.h +++ b/include/net/net.h @@ -23,7 +23,7 @@ struct MACAddr { uint8_t a[6]; -}; +} QEMU_PACKED; /* qdev nic properties */ -- 2.15.1