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 825ED379C5F for ; Wed, 13 May 2026 20:59:42 +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=1778705982; cv=none; b=oaQ6JKCGwP0LnaJEHaAHfPpjAHsKCGvGYkoUA+zD94LZwgpTCDts3HzylfNZoBh9xYbIpIOeX43vpchq8BT2VDVodvZHhPs0kkcTpHWVb5w40G8LpYSO5NEFHk4P+Rh4n1WU3m5G4dk8rZTfB8uzXPcaTzx1M6Nb81WNdQAC9l8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778705982; c=relaxed/simple; bh=Uxo/3Z4hbuSrRYh6LTQ9WIb8hbysCeV+2bszT877Dj0=; h=Date:Message-ID:From:To:Cc:Subject; b=VIBuw9hS93ZpROe34sOemCtlYzR2EHypsIhsALazpi40CMT2K6pCs+A393ZFu7GW4solwD8DG0fAxQjyJB7ZTpzIxJdc13AGS8I0kaHeRXRB2W+/T2/s+lFfsai86fOz90u8OXyNGVbklIQ4WX7wVRCsaQ0HY9TPj2T81bI2fHw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=VXhs2hAu; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="VXhs2hAu" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1B714C19425; Wed, 13 May 2026 20:59:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778705982; bh=Uxo/3Z4hbuSrRYh6LTQ9WIb8hbysCeV+2bszT877Dj0=; h=Date:From:To:Cc:Subject:From; b=VXhs2hAuZ5fYmiR1d7PIJwKtqadGmMF0tHpkhYGbAcWgb5wcMHmnYPzONI5BO6esT d2Q4IuzfFh2wFqQ6BsxT/GOT4/0ahm3aWmR+Euuvm/zLRqD6GRIe2WvzCrh5sv4HxV oETgBZEOr2CT1zekcy/I5pZ3qD89lUMBBjcPxhOgAnUDItIQA67Nckw8ZoWkbRYndU 1654VBSYkzmZXF+m2h/Zq3JiGRiFVrLoJUabXfl/Je0/xP6MHIJ0pzKkZpOeTri4tg Gzx2K1kZbntKNMoNZQmt1jCfikM8vuwWES3z3bl6sCJQ2kwNU2H9xYkUS8r/iJNUcb I7rDYJgLAHgJA== Date: Wed, 13 May 2026 10:59:41 -1000 Message-ID: From: Tejun Heo To: Linus Torvalds Cc: Lai Jiangshan , linux-kernel@vger.kernel.org Subject: [GIT PULL] workqueue: Fixes for v7.1-rc3 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Hello, Linus. The following changes since commit 20e81c64c905bd765e69ef07920d2b1130dc79b6: workqueue: Annotate alloc_workqueue_va() with __printf(1, 0) (2026-04-29 09:44:16 -1000) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git tags/wq-for-7.1-rc3-fixes for you to fetch changes up to 0143033dc22cdff912cfc13419f5db92fea3b4cb: workqueue: Fix wq->cpu_pwq leak in alloc_and_link_pwqs() WQ_UNBOUND path (2026-05-08 07:59:44 -1000) ---------------------------------------------------------------- workqueue: Fixes for v7.1-rc3 - Plug a wq->cpu_pwq leak on the WQ_UNBOUND allocation failure path. - Fix a cancel_delayed_work_sync() livelock against drain_workqueue() caused by the drain/destroy reject path leaving WORK_STRUCT_PENDING set with no owner. ---------------------------------------------------------------- Breno Leitao (2): workqueue: Release PENDING in __queue_work() drain/destroy reject path workqueue: Fix wq->cpu_pwq leak in alloc_and_link_pwqs() WQ_UNBOUND path kernel/workqueue.c | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) Thanks. -- tejun