[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v4 07/16] net: Add macros for MAC address tracing
From: |
Dmitry Fleytman |
Subject: |
[Qemu-devel] [PATCH v4 07/16] net: Add macros for MAC address tracing |
Date: |
Sun, 10 Apr 2016 18:14:56 +0300 |
From: Dmitry Fleytman <address@hidden>
These macros will be used by future commits introducing
e1000e device emulation and by vmxnet3 tracing code.
Signed-off-by: Dmitry Fleytman <address@hidden>
Signed-off-by: Leonid Bloch <address@hidden>
---
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.5.0
- [Qemu-devel] [PATCH v4 00/16] Introduce Intel 82574 GbE Controller Emulation (e1000e), Dmitry Fleytman, 2016/04/10
- [Qemu-devel] [PATCH v4 02/16] pci: Introduce define for PM capability version 1.1, Dmitry Fleytman, 2016/04/10
- [Qemu-devel] [PATCH v4 01/16] msix: make msix_clr_pending() visible for clients, Dmitry Fleytman, 2016/04/10
- [Qemu-devel] [PATCH v4 03/16] pcie: Add support for PCIe CAP v1, Dmitry Fleytman, 2016/04/10
- [Qemu-devel] [PATCH v4 05/16] vmxnet3: Use generic function for DSN capability definition, Dmitry Fleytman, 2016/04/10
- [Qemu-devel] [PATCH v4 04/16] pcie: Introduce function for DSN capability creation, Dmitry Fleytman, 2016/04/10
- [Qemu-devel] [PATCH v4 06/16] net: Introduce Toeplitz hash calculator, Dmitry Fleytman, 2016/04/10
- [Qemu-devel] [PATCH v4 07/16] net: Add macros for MAC address tracing,
Dmitry Fleytman <=
- [Qemu-devel] [PATCH v4 10/16] rtl8139: Move more TCP definitions to common header, Dmitry Fleytman, 2016/04/10
- [Qemu-devel] [PATCH v4 08/16] vmxnet3: Use common MAC address tracing macros, Dmitry Fleytman, 2016/04/10
- [Qemu-devel] [PATCH v4 12/16] vmxnet3: Use pci_dma_* API instead of cpu_physical_memory_*, Dmitry Fleytman, 2016/04/10
- [Qemu-devel] [PATCH v4 13/16] e1000_regs: Add definitions for Intel 82574-specific bits, Dmitry Fleytman, 2016/04/10
- [Qemu-devel] [PATCH v4 14/16] e1000: Move out code that will be reused in e1000e, Dmitry Fleytman, 2016/04/10
- [Qemu-devel] [PATCH v4 11/16] net_pkt: Extend packet abstraction as required by e1000e functionality, Dmitry Fleytman, 2016/04/10
- [Qemu-devel] [PATCH v4 16/16] e1000e: Introduce qtest for e1000e device, Dmitry Fleytman, 2016/04/10
- [Qemu-devel] [PATCH v4 09/16] net_pkt: Name vmxnet3 packet abstractions more generic, Dmitry Fleytman, 2016/04/10
- [Qemu-devel] [PATCH v4 15/16] net: Introduce e1000e device emulation, Dmitry Fleytman, 2016/04/10
- Re: [Qemu-devel] [PATCH v4 00/16] Introduce Intel 82574 GbE Controller Emulation (e1000e), Michael S. Tsirkin, 2016/04/10