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 F2EFD5227 for ; Thu, 16 Oct 2025 12:51:45 +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=1760619106; cv=none; b=miw+OUpikQBvOV/Zqr17M5i9go8dnPa4J1MoMb5Eam8KxAsGU3UblpMRG0kTRwc6I2LY+Y/mDfUbkVYNmxqKCzeFIEA3ANbvQkcJZdByAwDXPoYtlYVJBAdGhHkwhB22Di0rdp0eeika3MEe0oo0ZryIYLwwRwZ+OpiMS2e7VDc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760619106; c=relaxed/simple; bh=4KXXaIGK6xZDYzbIboLyK3CFlLQJlUnbw3V9+3ORvlo=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=bR6KFYc9710Y5GgKiR54H70/N6y8ozjwbKYHHg4SB8UugGVDxGUnafTR12SHVn6uC2vcSZ5qJQxQWNpfXHCwVtWtVt9IAi2TRp8ugI8b2ELNdNWg6/XOiw2AoY34qWZKepqBHWKwJOMWk02mbHb4GYqI/gSdhdECWNIuDWqoi0Q= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=GNLvYOaO; 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="GNLvYOaO" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 26BF8C4CEFE; Thu, 16 Oct 2025 12:51:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1760619105; bh=4KXXaIGK6xZDYzbIboLyK3CFlLQJlUnbw3V9+3ORvlo=; h=Subject:To:Cc:From:Date:From; b=GNLvYOaOTXgJjdg2gR2yCZlNOX2hvILhg4OQcDweLHFlI/0Dq0WS5EyApEavs8OZK k62dgXCov8UTepYpTsVqQOCNiCannL9RMsdUPNsxMYLWzwiSBSrn+31VrfSyqTustl ODZ1R+K9urNLHcHUsRwDl2cby3quLYVOXt51L3eM= Subject: FAILED: patch "[PATCH] padata: Reset next CPU when reorder sequence wraps around" failed to apply to 5.10-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:51 +0200 Message-ID: <2025101651-sizing-subfloor-8c1d@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 5.10-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-5.10.y git checkout FETCH_HEAD git cherry-pick -x 501302d5cee0d8e8ec2c4a5919c37e0df9abc99b # git commit -s git send-email --to '' --in-reply-to '2025101651-sizing-subfloor-8c1d@gregkh' --subject-prefix 'PATCH 5.10.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);