diff options
author | Dmitry Fleytman | 2016-06-01 10:23:40 +0200 |
---|---|---|
committer | Jason Wang | 2016-06-02 04:42:28 +0200 |
commit | 66409b7c8bd0ebb075a6af8cbc7846fc0a95107d (patch) | |
tree | 05cba20e8051c2f19e8861eba8c46bd2a1a9e578 /hw | |
parent | net_pkt: Name vmxnet3 packet abstractions more generic (diff) | |
download | qemu-66409b7c8bd0ebb075a6af8cbc7846fc0a95107d.tar.gz qemu-66409b7c8bd0ebb075a6af8cbc7846fc0a95107d.tar.xz qemu-66409b7c8bd0ebb075a6af8cbc7846fc0a95107d.zip |
rtl8139: Move more TCP definitions to common header
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 'hw')
-rw-r--r-- | hw/net/rtl8139.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/hw/net/rtl8139.c b/hw/net/rtl8139.c index 1e5ec149fa..562c1fded2 100644 --- a/hw/net/rtl8139.c +++ b/hw/net/rtl8139.c @@ -1867,11 +1867,6 @@ static int rtl8139_transmit_one(RTL8139State *s, int descriptor) return 1; } -/* structures and macros for task offloading */ -#define TCP_HEADER_DATA_OFFSET(tcp) (((be16_to_cpu(tcp->th_offset_flags) >> 12)&0xf) << 2) -#define TCP_FLAGS_ONLY(flags) ((flags)&0x3f) -#define TCP_HEADER_FLAGS(tcp) TCP_FLAGS_ONLY(be16_to_cpu(tcp->th_offset_flags)) - #define TCP_HEADER_CLEAR_FLAGS(tcp, off) ((tcp)->th_offset_flags &= cpu_to_be16(~TCP_FLAGS_ONLY(off))) /* produces ones' complement sum of data */ |