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 4D7B425FA1B; Thu, 17 Apr 2025 18:21:09 +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=1744914070; cv=none; b=LMnLnzB/9ggV5cqWlU0Br1mWOQ9DcUsr+RQjCIjwb0k/jIoCNHQ9A4KKdlgheb4x10D0sx3gTTo5amBO9iG+ufzSQhxhvRL9EKUtIqL1p9cWGcWAKHHfpCXdltkBJRJYF/tws9dxcR5kEi5p5ndqhGP6xD1ZT6+jkbC9RJytNo0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744914070; c=relaxed/simple; bh=bP9L17FjBzWaLLPMfqdq+6sePxLOY/nNTM1OGdW1tuA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=cPdM/eSVOlfBE/dIpweh+T7UbQ6YgHE+WjGcdU30s9N/haiGYRKaSJX15BVOI3BV18n9psTq6pUh8UQE1ix7zdm5qJWndB34Ilifv2vlwVY7Z0kZ+23KCS4JUJ5QfwBmYa+ULY4IV8gtOL3Gl++8aCd1UO5dgHliTQ1p7AI1Ydw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=1bFlu89z; 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="1bFlu89z" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5AD82C4CEE4; Thu, 17 Apr 2025 18:21:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1744914069; bh=bP9L17FjBzWaLLPMfqdq+6sePxLOY/nNTM1OGdW1tuA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=1bFlu89zN2HX61x1R29+tZi5kd8SEZdRUAK/rYwocafUBehFZZqS3K1aWT0qn/kGH 1TlAk4wpuNhyT1Z7iZoILAU51OEAh6RnVii6snDIcYPPBsFpOjPPOGtZXaEevjQxWM 05k7MMzqeae6fLciVWKj7YbjlZABWuEFSxIoopkQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jason Xing , Mina Almasry , Paolo Abeni , Sasha Levin Subject: [PATCH 6.13 096/414] page_pool: avoid infinite loop to schedule delayed worker Date: Thu, 17 Apr 2025 19:47:34 +0200 Message-ID: <20250417175115.302190238@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250417175111.386381660@linuxfoundation.org> References: <20250417175111.386381660@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.13-stable review patch. If anyone has any objections, please let me know. ------------------ From: Jason Xing [ Upstream commit 43130d02baa137033c25297aaae95fd0edc41654 ] We noticed the kworker in page_pool_release_retry() was waken up repeatedly and infinitely in production because of the buggy driver causing the inflight less than 0 and warning us in page_pool_inflight()[1]. Since the inflight value goes negative, it means we should not expect the whole page_pool to get back to work normally. This patch mitigates the adverse effect by not rescheduling the kworker when detecting the inflight negative in page_pool_release_retry(). [1] [Mon Feb 10 20:36:11 2025] ------------[ cut here ]------------ [Mon Feb 10 20:36:11 2025] Negative(-51446) inflight packet-pages ... [Mon Feb 10 20:36:11 2025] Call Trace: [Mon Feb 10 20:36:11 2025] page_pool_release_retry+0x23/0x70 [Mon Feb 10 20:36:11 2025] process_one_work+0x1b1/0x370 [Mon Feb 10 20:36:11 2025] worker_thread+0x37/0x3a0 [Mon Feb 10 20:36:11 2025] kthread+0x11a/0x140 [Mon Feb 10 20:36:11 2025] ? process_one_work+0x370/0x370 [Mon Feb 10 20:36:11 2025] ? __kthread_cancel_work+0x40/0x40 [Mon Feb 10 20:36:11 2025] ret_from_fork+0x35/0x40 [Mon Feb 10 20:36:11 2025] ---[ end trace ebffe800f33e7e34 ]--- Note: before this patch, the above calltrace would flood the dmesg due to repeated reschedule of release_dw kworker. Signed-off-by: Jason Xing Reviewed-by: Mina Almasry Link: https://patch.msgid.link/20250214064250.85987-1-kerneljasonxing@gmail.com Signed-off-by: Paolo Abeni Signed-off-by: Sasha Levin --- net/core/page_pool.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/net/core/page_pool.c b/net/core/page_pool.c index 32570333068d8..b180e1cf25059 100644 --- a/net/core/page_pool.c +++ b/net/core/page_pool.c @@ -1066,7 +1066,13 @@ static void page_pool_release_retry(struct work_struct *wq) int inflight; inflight = page_pool_release(pool); - if (!inflight) + /* In rare cases, a driver bug may cause inflight to go negative. + * Don't reschedule release if inflight is 0 or negative. + * - If 0, the page_pool has been destroyed + * - if negative, we will never recover + * in both cases no reschedule is necessary. + */ + if (inflight <= 0) return; /* Periodic warning for page pools the user can't see */ -- 2.39.5