From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58758) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b5krH-0007Hc-K2 for qemu-devel@nongnu.org; Wed, 25 May 2016 22:17:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b5krB-0001XS-Sm for qemu-devel@nongnu.org; Wed, 25 May 2016 22:17:10 -0400 Received: from mx1.redhat.com ([209.132.183.28]:56971) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b5krB-0001XJ-NM for qemu-devel@nongnu.org; Wed, 25 May 2016 22:17:05 -0400 From: Jason Wang Date: Thu, 26 May 2016 10:16:24 +0800 Message-Id: <1464228995-26657-10-git-send-email-jasowang@redhat.com> In-Reply-To: <1464228995-26657-1-git-send-email-jasowang@redhat.com> References: <1464228995-26657-1-git-send-email-jasowang@redhat.com> Subject: [Qemu-devel] [PULL V3 09/20] net: Add macros for MAC address tracing List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: peter.maydell@linaro.org, qemu-devel@nongnu.org Cc: Dmitry Fleytman , Leonid Bloch , Jason Wang From: Dmitry Fleytman These macros will be used by future commits introducing e1000e device emulation and by vmxnet3 tracing code. Reviewed-by: Michael S. Tsirkin Signed-off-by: Dmitry Fleytman Signed-off-by: Leonid Bloch Signed-off-by: Jason Wang --- include/net/net.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/net/net.h b/include/net/net.h index 73e4c46..129d46b 100644 --- a/include/net/net.h +++ b/include/net/net.h @@ -9,6 +9,11 @@ #include "migration/vmstate.h" #include "qapi-types.h" +#define MAC_FMT "%02X:%02X:%02X:%02X:%02X:%02X" +#define MAC_ARG(x) ((uint8_t *)(x))[0], ((uint8_t *)(x))[1], \ + ((uint8_t *)(x))[2], ((uint8_t *)(x))[3], \ + ((uint8_t *)(x))[4], ((uint8_t *)(x))[5] + #define MAX_QUEUE_NUM 1024 /* Maximum GSO packet size (64k) plus plenty of room for -- 2.7.4