qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] Virtio-net: Replace the hardcode 6 with defined


From: Anthony Liguori
Subject: Re: [Qemu-devel] [PATCH] Virtio-net: Replace the hardcode 6 with defined ETN_ALEN
Date: Mon, 24 May 2010 15:29:50 -0500
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.5) Gecko/20091209 Fedora/3.0-4.fc12 Lightning/1.0pre Thunderbird/3.0

On 05/22/2010 09:49 PM, address@hidden wrote:
From: Amos Kong<address@hidden>

hw/virtio-net.h:
     #define ETH_ALEN    6
ETH_ALEN was defined by commit 7967406801aa897fae83caad3278ac85a342adaa

Signed-off-by: Amos Kong<address@hidden>

Applied.  Thanks.

Regards,

Anthony Liguori

---
  hw/virtio-net.h |    4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/virtio-net.h b/hw/virtio-net.h
index e55119b..235f1a9 100644
--- a/hw/virtio-net.h
+++ b/hw/virtio-net.h
@@ -54,8 +54,8 @@

  struct virtio_net_config
  {
-    /* The config defining mac address (6 bytes) */
-    uint8_t mac[6];
+    /* The config defining mac address ($ETH_ALEN bytes) */
+    uint8_t mac[ETH_ALEN];
      /* See VIRTIO_NET_F_STATUS and VIRTIO_NET_S_* above */
      uint16_t status;
  } __attribute__((packed));




reply via email to

[Prev in Thread] Current Thread [Next in Thread]