From: Daan De Meyer Date: Sun, 14 Jul 2024 20:27:09 +0000 (+0200) Subject: TEST-64-UDEV-STORAGE: Use max_ioqpairs instead of num_queues X-Git-Tag: v257-rc1~903^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d97b48176b072211be099318f75dfea62820b4f8;p=thirdparty%2Fsystemd.git TEST-64-UDEV-STORAGE: Use max_ioqpairs instead of num_queues Fixes a deprecation warning from qemu. --- diff --git a/test/TEST-64-UDEV-STORAGE/nvme_basic.configure b/test/TEST-64-UDEV-STORAGE/nvme_basic.configure index 28ddfa46c11..b740c096c4e 100755 --- a/test/TEST-64-UDEV-STORAGE/nvme_basic.configure +++ b/test/TEST-64-UDEV-STORAGE/nvme_basic.configure @@ -25,7 +25,7 @@ def add_drive(i: int, serial: str) -> None: "Options": "cache=unsafe", } ] - config["QemuArgs"] += ["-device", f"nvme,drive={id},serial={serial},num_queues=8"] + config["QemuArgs"] += ["-device", f"nvme,drive={id},serial={serial},max_ioqpairs=8"] for i in range(5): add_drive(i, serial=f"deadbeef{i}")