From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 AC93139E6EB; Sat, 12 Sep 2026 20:02:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789243375; cv=none; b=MGY50m0l+Z1cN0BugwOMR/X13hNbLiKmII06Wt7uW/Fm/Ld+pCE169lFwNunC5JqGs8ErqbpnQ1Y9JRq+Pg7Uwef926skUXage2HyiwSkguImvvDzHfViWv8M8eYWHK2vLvRntzDbaKPLmQf2cHqOsR2FAzONwHvoPTBQXsocK8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789243375; c=relaxed/simple; bh=4lumD9jtT7Jt/xIX9iDFL4+h+A4mWWJZd4erCSD+3Tg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Q6YfWmxOkL19NLvDZYAeJ5GzkDuePSwAzMNHGXkcLDLg6c+NtrTDB7EvSdmtHXBdgLh+xZHuvAOGnm2AqGLcY9wDQ7ZvvMY9U9mO8gWk9ShAEQWlRO1gX2yecyoN8bfKlJqW3wBKzwPUdFLedQfwQsMkLjxUml7EYTzlGBTThmY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=RbQejuxl; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="RbQejuxl" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D07C51F000FF; Sat, 12 Sep 2026 20:02:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1789243373; bh=G4jsmhIU55tFt/sjPVolXws9uq41BOdSol2Dc9yK7K8=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=RbQejuxlGWx2RgBe4pXKBuBREo+QLK1UDXdDHKjPVgfjEX7K/+L5JcRhIS6v7Lpuf mzoBZFwvbjlPooxWTEfAETjCeiZTXzOEDR4Fk0XzuoOPYZdbTjx7ieXAzoJtAN5oln VTfmakbqqUmJhug8bXvcZHByVcS3mNuMfVXukZrw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Karl Mehltretter , Andrew Lunn , Paolo Abeni , Sasha Levin Subject: [PATCH 5.10 732/798] 8139cp: fix Rx and Tx not being disabled in cp_suspend Date: Sat, 12 Sep 2026 09:06:00 +0200 Message-ID: <20260912065533.855353370@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260912065516.948645775@linuxfoundation.org> References: <20260912065516.948645775@linuxfoundation.org> User-Agent: quilt/0.69 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 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Karl Mehltretter [ Upstream commit cb7643b78d35392f0f434774d78b4c77b80f677f ] On QEMU rtl8139 model, frames that arrive while the interface is suspended still end up in the stack after resume. With pm_test=devices, which keeps devices suspended for 5s, 200 frames sent to interface during that time and 50 frames after resume, eth0 reports 113 received frames. cp_suspend() is supposed to stop receiver and the transmitter, but the mask is wrong: (~RxOn | ~TxOn) is ~0, nothing is cleared and Cmd still reads 0x0d when cp_suspend() returns. Use ~(RxOn | TxOn) so both bits are actually cleared. Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2") Signed-off-by: Karl Mehltretter Reviewed-by: Andrew Lunn Link: https://patch.msgid.link/20260817043057.20099-1-kmehltretter@gmail.com Signed-off-by: Paolo Abeni Signed-off-by: Sasha Levin --- drivers/net/ethernet/realtek/8139cp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ethernet/realtek/8139cp.c b/drivers/net/ethernet/realtek/8139cp.c index 4e44313b76513..086fce1b15269 100644 --- a/drivers/net/ethernet/realtek/8139cp.c +++ b/drivers/net/ethernet/realtek/8139cp.c @@ -2070,7 +2070,7 @@ static int __maybe_unused cp_suspend(struct device *device) /* Disable Rx and Tx */ cpw16 (IntrMask, 0); - cpw8 (Cmd, cpr8 (Cmd) & (~RxOn | ~TxOn)); + cpw8 (Cmd, cpr8 (Cmd) & ~(RxOn | TxOn)); spin_unlock_irqrestore (&cp->lock, flags); -- 2.53.0