aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTomasz Dzieciol <t.dzieciol@partner.samsung.com>2023-05-29 16:01:50 +0200
committerJason Wang <jasowang@redhat.com>2023-09-18 14:36:13 +0800
commit17ccd01647960e760f9b3daa41bcdc6aabd2ddc9 (patch)
tree84db2cc873406010a4dfd4645766edaff173c11e /tests
parentec82ad7c4d61061d78907436ceb181859ab4a8d5 (diff)
downloadqemu-17ccd01647960e760f9b3daa41bcdc6aabd2ddc9.zip
qemu-17ccd01647960e760f9b3daa41bcdc6aabd2ddc9.tar.gz
qemu-17ccd01647960e760f9b3daa41bcdc6aabd2ddc9.tar.bz2
igb: RX payload guest writting refactoring
Refactoring is done in preparation for support of multiple advanced descriptors RX modes, especially packet-split modes. Signed-off-by: Tomasz Dzieciol <t.dzieciol@partner.samsung.com> Reviewed-by: Akihiko Odaki <akihiko.odaki@daynix.com> Tested-by: Akihiko Odaki <akihiko.odaki@daynix.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/qtest/libqos/igb.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/qtest/libqos/igb.c b/tests/qtest/libqos/igb.c
index a603468..f40c4ec 100644
--- a/tests/qtest/libqos/igb.c
+++ b/tests/qtest/libqos/igb.c
@@ -109,6 +109,11 @@ static void igb_pci_start_hw(QOSGraphObject *obj)
E1000_RAH_AV | E1000_RAH_POOL_1 |
le16_to_cpu(*(uint16_t *)(address + 4)));
+ /* Set supported receive descriptor mode */
+ e1000e_macreg_write(&d->e1000e,
+ E1000_SRRCTL(0),
+ E1000_SRRCTL_DESCTYPE_ADV_ONEBUF);
+
/* Enable receive */
e1000e_macreg_write(&d->e1000e, E1000_RFCTL, E1000_RFCTL_EXTEN);
e1000e_macreg_write(&d->e1000e, E1000_RCTL, E1000_RCTL_EN);