From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 135F2446C9; Tue, 20 Feb 2024 21:32:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708464737; cv=none; b=fSz+j8cukXUgWNlX0yLkSzYiRMm4g67S7FgdaXl0CTHdX4uKwI8CH3akulsA3gIcOWSJXdlkBh5yq6eywV0ufZbaQ7NjL7JlpNr8/MRyKo8mg/IVgLqrW50Cq+idCxUPIz6LBc9H7fuZU4dIlM3f8aDZTHsqDPndKBWHuZe4kNI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708464737; c=relaxed/simple; bh=bLR0J57xcLEG6U9XR8bgdnzz2ULm52HsUsWTtb8KyO4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Zijwre8NwTJFPfhQkRma2M0jolb4I5Axo2GXp7gm/p0TNowwcPSYt9nYv+pWWTTmfhN/lDnX3Gt9pVR+gCqO2SnAXOTABXKHXvFBKKq3jFD/0taPLNe3Puobp00bgqHJVBauDDBCuMthBluE5ZNHPosI+CRMz5ihGRk5fi7IDXs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=EK2L317Q; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="EK2L317Q" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9596BC433F1; Tue, 20 Feb 2024 21:32:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1708464737; bh=bLR0J57xcLEG6U9XR8bgdnzz2ULm52HsUsWTtb8KyO4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=EK2L317QypnL/RitAs1Ss49weyhX38E1OIFPISvA8eSLqt1QJ2t7Bsu/fpTYwSyRL PCwKj535U6tUBEbjP2wVDz8N/OB7JO631i9/qH6xQ6Jm5ACV6StN8/IcSUMJN7LJTN 4ypsbqq+Dg4QjLXNqlX5LIjIX6bTmQm3aCP+iw0U= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Paolo Abeni , "Matthieu Baerts (NGI0)" , Jakub Kicinski Subject: [PATCH 6.7 120/309] selftests: mptcp: increase timeout to 30 min Date: Tue, 20 Feb 2024 21:54:39 +0100 Message-ID: <20240220205636.929918335@linuxfoundation.org> X-Mailer: git-send-email 2.43.2 In-Reply-To: <20240220205633.096363225@linuxfoundation.org> References: <20240220205633.096363225@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.7-stable review patch. If anyone has any objections, please let me know. ------------------ From: Matthieu Baerts (NGI0) commit 4d4dfb2019d7010efb65926d9d1c1793f9a367c6 upstream. On very slow environments -- e.g. when QEmu is used without KVM --, mptcp_join.sh selftest can take a bit more than 20 minutes. Bump the default timeout by 50% as it seems normal to take that long on some environments. When a debug kernel config is used, this selftest will take even longer, but that's certainly not a common test env to consider for the timeout. The Fixes tag that has been picked here is there simply to help having this patch backported to older stable versions. It is difficult to point to the exact commit that made some env reaching the timeout from time to time. Fixes: d17b968b9876 ("selftests: mptcp: increase timeout to 20 minutes") Cc: stable@vger.kernel.org Acked-by: Paolo Abeni Signed-off-by: Matthieu Baerts (NGI0) Link: https://lore.kernel.org/r/20240131-upstream-net-20240131-mptcp-ci-issues-v1-5-4c1c11e571ff@kernel.org Signed-off-by: Jakub Kicinski Signed-off-by: Greg Kroah-Hartman --- tools/testing/selftests/net/mptcp/settings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/tools/testing/selftests/net/mptcp/settings +++ b/tools/testing/selftests/net/mptcp/settings @@ -1 +1 @@ -timeout=1200 +timeout=1800