[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 02/12] tests/qtest/libqos/e1000e: Set E1000_CTRL_SLU
|
From: |
Thomas Huth |
|
Subject: |
[PULL 02/12] tests/qtest/libqos/e1000e: Set E1000_CTRL_SLU |
|
Date: |
Sun, 6 Nov 2022 16:31:46 +0100 |
From: Akihiko Odaki <akihiko.odaki@daynix.com>
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>
---
tests/qtest/libqos/e1000e.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/qtest/libqos/e1000e.c b/tests/qtest/libqos/e1000e.c
index 5f80035859..4fd0bd5311 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);
--
2.31.1
- [PULL 00/12] qtest and s390x patches, Thomas Huth, 2022/11/06
- [PULL 01/12] tests/qtest/libqos/e1000e: Refer common PCI ID definitions, Thomas Huth, 2022/11/06
- [PULL 02/12] tests/qtest/libqos/e1000e: Set E1000_CTRL_SLU,
Thomas Huth <=
- [PULL 05/12] tests/qtest/libqos/e1000e: Use IVAR shift definitions, Thomas Huth, 2022/11/06
- [PULL 03/12] tests/qtest/e1000e-test: Use e1000_regs.h, Thomas Huth, 2022/11/06
- [PULL 04/12] tests/qtest/libqos/e1000e: Use E1000_STATUS_ASDV_1000, Thomas Huth, 2022/11/06
- [PULL 06/12] tests/qtest: Fix two format strings, Thomas Huth, 2022/11/06
- [PULL 08/12] gitlab-ci: increase clang-user timeout, Thomas Huth, 2022/11/06
- [PULL 07/12] tests/qtest: migration-test: Enable TLS PSK tests for win32, Thomas Huth, 2022/11/06
- [PULL 09/12] s390x/css: revert SCSW ctrl/flag bits on error, Thomas Huth, 2022/11/06
- [PULL 10/12] s390x/pci: RPCIT second pass when mappings exhausted, Thomas Huth, 2022/11/06
- [PULL 11/12] s390x: Register TYPE_S390_CCW_MACHINE properties as class properties, Thomas Huth, 2022/11/06
- [PULL 12/12] s390x/cpu topology: add max_threads machine class attribute, Thomas Huth, 2022/11/06