aboutsummaryrefslogtreecommitdiff
path: root/hw/net/e1000e_core.h
diff options
context:
space:
mode:
authorDmitry Fleytman <dmitry@daynix.com>2016-09-15 09:14:24 +0300
committerJason Wang <jasowang@redhat.com>2016-09-27 17:54:22 +0800
commit6ee0e20b653817aa0adac89e21704842608e1639 (patch)
tree44a6b7d4d2281173513e31d3c354b255270931ba /hw/net/e1000e_core.h
parent47f9f15831faa549504ab9b035aaea44a02e5f95 (diff)
e1000e: Flush all receive queues on receive enable
Before this patch first netdev queue only was flushed. Signed-off-by: Dmitry Fleytman <dmitry@daynix.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'hw/net/e1000e_core.h')
-rw-r--r--hw/net/e1000e_core.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/net/e1000e_core.h b/hw/net/e1000e_core.h
index 5f413a9e08..1ff6978ca1 100644
--- a/hw/net/e1000e_core.h
+++ b/hw/net/e1000e_core.h
@@ -144,3 +144,6 @@ e1000e_receive(E1000ECore *core, const uint8_t *buf, size_t size);
ssize_t
e1000e_receive_iov(E1000ECore *core, const struct iovec *iov, int iovcnt);
+
+void
+e1000e_start_recv(E1000ECore *core);