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 B534E3233FC; Wed, 17 Sep 2025 12:48:31 +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=1758113311; cv=none; b=jTgweOPivJnrLjDQjjOQkhdagaBD6Ila92HhFPyTyU9KhiKAhfI9dBFj2PwsgsX7LR9vS/rh364zjJcGBGKzweFky11zOKlI9vB/rbGLsZsRjI70F2MdkKT6LpEEpb1FTCV7Dfz6QlOr/a7cQw3Q9D7iMCGnyCSKTFTgrP11Z3E= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758113311; c=relaxed/simple; bh=U0kQy7j8OMwF7phTItvAuRJv5oiYPmz5icDDxrHw8qs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=IBSR2VTDZoo7M+WccwpdGYAIoe2G1AgJTmIHlzQTnnV/gqlGvoUVPW8GV38p91XaqZy7VL7G7YetjWCN+Oq7g97D8zqthdnP3Pv87PgQ2YiCx5WIqEbuHKZvggYGhvLplDmLGNaRmiw3go58gvS7eFitLTmuWcMXvksC2k/ZI1w= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=xU6WIECi; 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="xU6WIECi" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 34208C4CEF5; Wed, 17 Sep 2025 12:48:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1758113311; bh=U0kQy7j8OMwF7phTItvAuRJv5oiYPmz5icDDxrHw8qs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=xU6WIECiPuvhwNqz7mWkXLBaBAUr9AqRc4bmxDe/CcGPwl5fzhj4wWFbbrdVsvKXs CrC+louwIs+IiEBq1MBmlaayPtTPEtm44m+8x2QG2S3L9/Be3bulxOuh5pWsqOQj2d PU7OZX5OUeHRKdoajCW6bPDtnQMqmakGJi6n/aWs= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Mark Brown , Harshvardhan Jha , Trond Myklebust Subject: [PATCH 6.12 048/140] Revert "SUNRPC: Dont allow waiting for exiting tasks" Date: Wed, 17 Sep 2025 14:33:40 +0200 Message-ID: <20250917123345.478773273@linuxfoundation.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250917123344.315037637@linuxfoundation.org> References: <20250917123344.315037637@linuxfoundation.org> User-Agent: quilt/0.68 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.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Trond Myklebust commit 199cd9e8d14bc14bdbd1fa3031ce26dac9781507 upstream. This reverts commit 14e41b16e8cb677bb440dca2edba8b041646c742. This patch breaks the LTP acct02 test, so let's revert and look for a better solution. Reported-by: Mark Brown Reported-by: Harshvardhan Jha Link: https://lore.kernel.org/linux-nfs/7d4d57b0-39a3-49f1-8ada-60364743e3b4@sirena.org.uk/ Cc: stable@vger.kernel.org # 6.15.x Signed-off-by: Trond Myklebust Signed-off-by: Greg Kroah-Hartman --- net/sunrpc/sched.c | 2 -- 1 file changed, 2 deletions(-) --- a/net/sunrpc/sched.c +++ b/net/sunrpc/sched.c @@ -276,8 +276,6 @@ EXPORT_SYMBOL_GPL(rpc_destroy_wait_queue static int rpc_wait_bit_killable(struct wait_bit_key *key, int mode) { - if (unlikely(current->flags & PF_EXITING)) - return -EINTR; schedule(); if (signal_pending_state(mode, current)) return -ERESTARTSYS;