diff options
| author | Anthony Liguori | 2013-11-13 20:48:02 +0100 |
|---|---|---|
| committer | Anthony Liguori | 2013-11-13 20:48:03 +0100 |
| commit | b873a55cf45f1fbff7026de885848d52939d18e1 (patch) | |
| tree | c13513f8d4083f9b31399ab3cc80ea12332866cf /include | |
| parent | Merge remote-tracking branch 'stefanha/block' into staging (diff) | |
| parent | virtio-net: broken RX filtering logic fixed (diff) | |
| download | qemu-b873a55cf45f1fbff7026de885848d52939d18e1.tar.gz qemu-b873a55cf45f1fbff7026de885848d52939d18e1.tar.xz qemu-b873a55cf45f1fbff7026de885848d52939d18e1.zip | |
Merge remote-tracking branch 'stefanha/net' into staging
# By Dmitry Fleytman (1) and others
# Via Stefan Hajnoczi
* stefanha/net:
virtio-net: broken RX filtering logic fixed
net: fix qemu_flush_queued_packets() in presence of a hub
net: disallow to specify multicast MAC address
Message-id: 1383928804-28866-1-git-send-email-stefanha@redhat.com
Signed-off-by: Anthony Liguori <aliguori@amazon.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/net/eth.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/net/eth.h b/include/net/eth.h index 1d48e06b22..b3273b823f 100644 --- a/include/net/eth.h +++ b/include/net/eth.h @@ -84,7 +84,7 @@ typedef struct ip_pseudo_header { } ip_pseudo_header; /* IPv6 address */ -struct in6_addr { +struct in6_address { union { uint8_t __u6_addr8[16]; } __in6_u; @@ -105,8 +105,8 @@ struct ip6_header { uint8_t ip6_un3_ecn; /* 2 bits ECN, top 6 bits payload length */ } ip6_un3; } ip6_ctlun; - struct in6_addr ip6_src; /* source address */ - struct in6_addr ip6_dst; /* destination address */ + struct in6_address ip6_src; /* source address */ + struct in6_address ip6_dst; /* destination address */ }; struct ip6_ext_hdr { |
