From nobody Sat Feb 7 17:09:37 2026 Received: from out-177.mta0.migadu.com (out-177.mta0.migadu.com [91.218.175.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DF550188596 for ; Fri, 2 Jan 2026 18:30:57 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.177 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767378659; cv=none; b=sXTEHJmw1luIi43/D4WmbizN0aI1FnxBClid0g3KmXyNojYdifv4Xr2PGyFs2ErPxB3A24zulB3qLjYk/lDsRmPJkb/72KIDr1K5o4OXQZhegH3GS7lse3x2fXnYdyS/M/p/Pwl/ECBRgc1iljmYx//SaTyAGY/gRZFnYXRa4Qs= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767378659; c=relaxed/simple; bh=D4TmaAxTnBQ/b9c1hBEfJ1PosADa9TkbcS6/QTR4RDU=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=GJz/M1DQfvnDZElzMFnvMJ/SsZk7b9Xup0Zw2SdNw09toMWXtC4luV3ryFWBavefxXH+8GWazXx975nP8p+jsCm3eXAHZAzUQRKTWNskRF14kNTu/W7GZoRM2m0Y1WNnKfDGfyOhthHqqGY/Ko+HKgltOhucUzpYIUG4RE3gKac= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=PgQ4wf2F; arc=none smtp.client-ip=91.218.175.177 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="PgQ4wf2F" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1767378655; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=HaTtIvEunPnbGtxv7cizIPNuobdeWOh/nb+49uxiikk=; b=PgQ4wf2Fal0JVno6ocBSiIN7aX91fsXpzNT0Kw+FE4P9/igSTaedWHpYoqoJJnEdtDyD1A sc5R03p4Uw5vDfr17mqCRy4N6uhNvQcnOmnfoOK2HFkYN11cO9hiuk3BYwcWVcriwdOxfV HNS6zg4kFwddVORaio3TfPE4fldUoRQ= From: Yosry Ahmed To: Sean Christopherson , Paolo Bonzini , Andrew Jones Cc: kvm@vger.kernel.org, linux-kernel@vger.kernel.org, Yosry Ahmed Subject: [kvm-unit-tests PATCH] x86: Increase the timeout for vmx_pf_{vpid/no_vpid/invvpid}_test Date: Fri, 2 Jan 2026 18:30:39 +0000 Message-ID: <20260102183039.496725-1-yosry.ahmed@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" When running the tests on some older CPUs (e.g. Skylake) on a kernel with some debug config options enabled (e.g. CONFIG_DEBUG_VM, CONFIG_PROVE_LOCKING, ..), the tests timeout. In this specific setup, the tests take between 4 and 5 minutes, so pump the timeout from 4 to 6 minutes. Signed-off-by: Yosry Ahmed Tested-by: Yosry Ahmed --- x86/unittests.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x86/unittests.cfg b/x86/unittests.cfg index 522318d32bf6..bb2b9f033b11 100644 --- a/x86/unittests.cfg +++ b/x86/unittests.cfg @@ -427,7 +427,7 @@ test_args =3D "vmx_pf_vpid_test" qemu_params =3D -cpu max,+vmx arch =3D x86_64 groups =3D vmx nested_exception nodefault -timeout =3D 240 +timeout =3D 360 =20 [vmx_pf_invvpid_test] file =3D vmx.flat @@ -435,7 +435,7 @@ test_args =3D "vmx_pf_invvpid_test" qemu_params =3D -cpu max,+vmx arch =3D x86_64 groups =3D vmx nested_exception nodefault -timeout =3D 240 +timeout =3D 360 =20 [vmx_pf_no_vpid_test] file =3D vmx.flat @@ -443,7 +443,7 @@ test_args =3D "vmx_pf_no_vpid_test" qemu_params =3D -cpu max,+vmx arch =3D x86_64 groups =3D vmx nested_exception nodefault -timeout =3D 240 +timeout =3D 360 =20 [vmx_pf_exception_test_reduced_maxphyaddr] file =3D vmx.flat --=20 2.52.0.351.gbe84eed79e-goog