diff options
author | Dmitry Fleytman | 2016-06-01 10:23:37 +0200 |
---|---|---|
committer | Jason Wang | 2016-06-02 04:42:27 +0200 |
commit | 6d1d4939a6477f15f69234b426aaaae52369f22b (patch) | |
tree | ff0e382fac22e40e517fbee29571ee62181924f1 /include/net/net.h | |
parent | net: Introduce Toeplitz hash calculator (diff) | |
download | qemu-6d1d4939a6477f15f69234b426aaaae52369f22b.tar.gz qemu-6d1d4939a6477f15f69234b426aaaae52369f22b.tar.xz qemu-6d1d4939a6477f15f69234b426aaaae52369f22b.zip |
net: Add macros for MAC address tracing
These macros will be used by future commits introducing
e1000e device emulation and by vmxnet3 tracing code.
Signed-off-by: Dmitry Fleytman <dmitry.fleytman@ravellosystems.com>
Signed-off-by: Leonid Bloch <leonid.bloch@ravellosystems.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'include/net/net.h')
-rw-r--r-- | include/net/net.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/net/net.h b/include/net/net.h index 50b10504c5..a69e382ba7 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 |