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 1ADB1262FE9 for ; Thu, 16 Oct 2025 12:51:37 +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=1760619097; cv=none; b=P+2MdDlPZfrnTmxIeUJx/XaeHSTRu50bdssqa/YS4bSdDIK2JPRn0yIjIChubvsB5+sHmqWi8VpO2qA0WRDwNx0vn0B+UzByGj+zsJrWLG4cPyM3SvSpvspcX5LBBsBRMiA6AhQn00BqxmlKc2Pi/cyvItuY85Cc2NJsmS6PE28= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760619097; c=relaxed/simple; bh=D+4tOKs7vVn3Ohh3bL+5caT8LLzc+OBgOcOFFOqxQ+8=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=IX6JrxGGr8AP09UKmUfm1wqn2+7OxsQQuVkH9Y+ZCEBm7fygoASM/OTBB+SgeFrMqDVQ0bg1aqcDrfBAemEbjOVwYXz1w2sLMW91t+1fHoUuT+e/klqMnDW3Aywa77ypxM6Np9mkq6zwrW4SbwuiBy+NXwCI7W+HjYqzo2jvH6A= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=jV3/uQRZ; 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="jV3/uQRZ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 99E62C4CEFE; Thu, 16 Oct 2025 12:51:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1760619097; bh=D+4tOKs7vVn3Ohh3bL+5caT8LLzc+OBgOcOFFOqxQ+8=; h=Subject:To:Cc:From:Date:From; b=jV3/uQRZU5gYFZvqVBRdSC398pVTdNzgEftPIGhc2HoeStMDP4F2zV6zancwNyUXR yL2uN15ujem6zl5LB40hSFoaqXedidI+SlvQb7Vcg+eDVEp8DKtzQ4jeoSbY5EfFsL xCGlIdWeAW2J4znoY9fN43l2AR3LFuwAix9KJNXs= Subject: FAILED: patch "[PATCH] padata: Reset next CPU when reorder sequence wraps around" failed to apply to 6.12-stable tree To: shaw.leon@gmail.com,herbert@gondor.apana.org.au,stable@vger.kernel.org Cc: From: Date: Thu, 16 Oct 2025 14:49:49 +0200 Message-ID: <2025101649-sector-ruined-1f7a@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit The patch below does not apply to the 6.12-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to . To reproduce the conflict and resubmit, you may use the following commands: git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-6.12.y git checkout FETCH_HEAD git cherry-pick -x 501302d5cee0d8e8ec2c4a5919c37e0df9abc99b # git commit -s git send-email --to '' --in-reply-to '2025101649-sector-ruined-1f7a@gregkh' --subject-prefix 'PATCH 6.12.y' HEAD^.. Possible dependencies: thanks, greg k-h ------------------ original commit in Linus's tree ------------------ >From 501302d5cee0d8e8ec2c4a5919c37e0df9abc99b Mon Sep 17 00:00:00 2001 From: Xiao Liang Date: Sun, 17 Aug 2025 00:30:15 +0800 Subject: [PATCH] padata: Reset next CPU when reorder sequence wraps around When seq_nr wraps around, the next reorder job with seq 0 is hashed to the first CPU in padata_do_serial(). Correspondingly, need reset pd->cpu to the first one when pd->processed wraps around. Otherwise, if the number of used CPUs is not a power of 2, padata_find_next() will be checking a wrong list, hence deadlock. Fixes: 6fc4dbcf0276 ("padata: Replace delayed timer with immediate workqueue in padata_reorder") Cc: Signed-off-by: Xiao Liang Signed-off-by: Herbert Xu diff --git a/kernel/padata.c b/kernel/padata.c index f85f8bd788d0..833740d75483 100644 --- a/kernel/padata.c +++ b/kernel/padata.c @@ -291,8 +291,12 @@ static void padata_reorder(struct padata_priv *padata) struct padata_serial_queue *squeue; int cb_cpu; - cpu = cpumask_next_wrap(cpu, pd->cpumask.pcpu); processed++; + /* When sequence wraps around, reset to the first CPU. */ + if (unlikely(processed == 0)) + cpu = cpumask_first(pd->cpumask.pcpu); + else + cpu = cpumask_next_wrap(cpu, pd->cpumask.pcpu); cb_cpu = padata->cb_cpu; squeue = per_cpu_ptr(pd->squeue, cb_cpu);