aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAkihiko Odaki <akihiko.odaki@daynix.com>2022-11-03 11:54:51 +0900
committerThomas Huth <thuth@redhat.com>2022-11-06 10:14:26 +0100
commitff4f45811fb2ca8f17ef78361128b03dbb679185 (patch)
tree8cc5b809688aeb590a264173b485a6ca4638b0f4 /tests
parent897c0da96f936217e3e2a04c77486ca93c2f1dea (diff)
downloadqemu-ff4f45811fb2ca8f17ef78361128b03dbb679185.zip
qemu-ff4f45811fb2ca8f17ef78361128b03dbb679185.tar.gz
qemu-ff4f45811fb2ca8f17ef78361128b03dbb679185.tar.bz2
tests/qtest/libqos/e1000e: Set E1000_CTRL_SLU
The later device status check depends on E1000_STATUS_LU, which is enabled by E1000_CTRL_SLU. Though E1000_STATUS_LU is not implemented and E1000_STATUS_LU is always available in the current implementation, be a bit nicer and set E1000_CTRL_SLU just in case the bit is implemented in the future. Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com> Message-Id: <20221103025451.27446-1-akihiko.odaki@daynix.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/qtest/libqos/e1000e.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qtest/libqos/e1000e.c b/tests/qtest/libqos/e1000e.c
index 5f80035..4fd0bd5 100644
--- a/tests/qtest/libqos/e1000e.c
+++ b/tests/qtest/libqos/e1000e.c
@@ -122,7 +122,7 @@ static void e1000e_pci_start_hw(QOSGraphObject *obj)
/* Reset the device */
val = e1000e_macreg_read(&d->e1000e, E1000_CTRL);
- e1000e_macreg_write(&d->e1000e, E1000_CTRL, val | E1000_CTRL_RST);
+ e1000e_macreg_write(&d->e1000e, E1000_CTRL, val | E1000_CTRL_RST | E1000_CTRL_SLU);
/* Enable and configure MSI-X */
qpci_msix_enable(&d->pci_dev);