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 CDC2D3A7F4C; Mon, 4 May 2026 13:59:52 +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=1777903192; cv=none; b=Cg0P6BXz6BoveCTKMNt7ElpYWPZEr3HfxNJGSM5GcPhsNZu497aIrBSn+7/UVFA/FtfZXFmzaSrK+KtKWcqMNd4HEpMhkcKI3oPRbKojpArwB8oxErzdx+5Sb35Tnd81k7YtNLBN1YiCmDRnk2iWT+1TxLhW/A/jl0ruJeX28ms= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777903192; c=relaxed/simple; bh=5D7bN/QVMZTTahc/A2Nbv8jUARaIZeu69whFhT4XrHw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=VBSNtJAL8ETGE8djou8y3HS4pnP5Dc6nQp43pfQrZBpz+lV6GjBEeVJszekvvo+CQhK53n3LuGfjK7cT07mGfYuTuT0gzvo2yUeStqDSoKgFvAnAjZPkDLPJr491irPFDO9RnSMXoe2QpD9V/YWthABjw9op4peJz+OI4vkW/vQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=KQnl0gZb; 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="KQnl0gZb" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 62E99C2BCB8; Mon, 4 May 2026 13:59:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1777903192; bh=5D7bN/QVMZTTahc/A2Nbv8jUARaIZeu69whFhT4XrHw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KQnl0gZbxDNmzPMEBwqLXlz2aKJAPtorPQ2ahyR4h8Yqs0wyp7Ss86JJvbSlGolgK 8BkAEiJMN2N0hoJee9B9Q3aXVYDTKLXfc8ixVo2jVIHpISpX2TCgbeLgtOEy5T5IEx /ASVHd0/G8dPCsgiVPjGF/v9sthLJwF115OukBuY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Simon Liebold , Shuah Khan Subject: [PATCH 7.0 097/307] selftests/mqueue: Fix incorrectly named file Date: Mon, 4 May 2026 15:49:42 +0200 Message-ID: <20260504135146.463940657@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260504135142.814938198@linuxfoundation.org> References: <20260504135142.814938198@linuxfoundation.org> User-Agent: quilt/0.69 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 7.0-stable review patch. If anyone has any objections, please let me know. ------------------ From: Simon Liebold commit 64fac99037689020ad97e472ae898e96ea3616dc upstream. Commit 85506aca2eb4 ("selftests/mqueue: Set timeout to 180 seconds") intended to increase the timeout for mq_perf_tests from the default kselftest limit of 45 seconds to 180 seconds. Unfortunately, the file storing this information was incorrectly named `setting` instead of `settings`, causing the kselftest runner not to pick up the limit and keep using the default 45 seconds limit. Fix this by renaming it to `settings` to ensure that the kselftest runner uses the increased timeout of 180 seconds for this test. Fixes: 85506aca2eb4 ("selftests/mqueue: Set timeout to 180 seconds") Cc: # 5.10.y Signed-off-by: Simon Liebold Link: https://lore.kernel.org/r/20260312140200.2224850-1-simonlie@amazon.de Signed-off-by: Shuah Khan Signed-off-by: Greg Kroah-Hartman --- tools/testing/selftests/mqueue/{setting => settings} | 0 tools/testing/selftests/mqueue/setting | 1 - tools/testing/selftests/mqueue/settings | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) rename tools/testing/selftests/mqueue/{setting => settings} (100%) --- a/tools/testing/selftests/mqueue/setting +++ /dev/null @@ -1 +0,0 @@ -timeout=180 --- /dev/null +++ b/tools/testing/selftests/mqueue/settings @@ -0,0 +1 @@ +timeout=180