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 48A051F6666; Wed, 6 Nov 2024 13:09:57 +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=1730898597; cv=none; b=SE+xHjCkDLWNat7/jfBumVpBMBZrp2AvkLcGhCPlGAD0IlDKX9uApzqC3C8RnmW/EXqI1Y7hAyWJQXrlz3Q7nFB83j2QEfIu/OMzODHv+JsiFdqsot1kmBHlXZpjbd+FK22w60eAfjCnHvavTRylYCYL9jLhm/MhX4IuhWWfl4M= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730898597; c=relaxed/simple; bh=gCwdtI0hi2jaQrjNRAg2FbGPvf6ge5eZecDTAjUfANU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=uAMqcjKOftKn+ewIQBGtyWOpAMhsFNOmO7woi9TM9kOq9FMjin0PZ9K5ETmV5pIbip+H/8T4S6M/nKYFDigsr9qVtVT2wypuJRbxVkBciq+4H9N26r1C9NKZvdD33eTVqZXJvWDGBlOsVWhYQMAHpTDZp68B+AGJyNGSvtdIFJk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=U5IAxDiq; 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="U5IAxDiq" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C3BC1C4CECD; Wed, 6 Nov 2024 13:09:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1730898597; bh=gCwdtI0hi2jaQrjNRAg2FbGPvf6ge5eZecDTAjUfANU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=U5IAxDiqHsnPV+kiWTPaihFxUQJ+x1qjZAeEV6HFPXdEe8rXQ6wnt8p63R3gtTwFs 73muH1emKXb4BXQONmzUukNxajqPrG1ylHZPPSXbeS6xxjLStCufV8SV8+QcECvHV3 JxHS9aXFZLhOthJiHxYyF0FODNyDdQjF+u9MxCyI= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Colin Ian King , Simon Horman , Heiner Kallweit , Jakub Kicinski , Sasha Levin Subject: [PATCH 5.4 291/462] r8169: Fix spelling mistake: "tx_underun" -> "tx_underrun" Date: Wed, 6 Nov 2024 13:03:04 +0100 Message-ID: <20241106120338.715299769@linuxfoundation.org> X-Mailer: git-send-email 2.47.0 In-Reply-To: <20241106120331.497003148@linuxfoundation.org> References: <20241106120331.497003148@linuxfoundation.org> User-Agent: quilt/0.67 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.4-stable review patch. If anyone has any objections, please let me know. ------------------ From: Colin Ian King [ Upstream commit 8df9439389a44fb2cc4ef695e08d6a8870b1616c ] There is a spelling mistake in the struct field tx_underun, rename it to tx_underrun. Signed-off-by: Colin Ian King Reviewed-by: Simon Horman Reviewed-by: Heiner Kallweit Link: https://patch.msgid.link/20240909140021.64884-1-colin.i.king@gmail.com Signed-off-by: Jakub Kicinski Stable-dep-of: ced8e8b8f40a ("r8169: add tally counter fields added with RTL8125") Signed-off-by: Sasha Levin --- drivers/net/ethernet/realtek/r8169_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/ethernet/realtek/r8169_main.c b/drivers/net/ethernet/realtek/r8169_main.c index 319f8d7a502da..e354b8c99f62f 100644 --- a/drivers/net/ethernet/realtek/r8169_main.c +++ b/drivers/net/ethernet/realtek/r8169_main.c @@ -623,7 +623,7 @@ struct rtl8169_counters { __le64 rx_broadcast; __le32 rx_multicast; __le16 tx_aborted; - __le16 tx_underun; + __le16 tx_underrun; }; struct rtl8169_tc_offsets { @@ -1795,7 +1795,7 @@ static void rtl8169_get_ethtool_stats(struct net_device *dev, data[9] = le64_to_cpu(counters->rx_broadcast); data[10] = le32_to_cpu(counters->rx_multicast); data[11] = le16_to_cpu(counters->tx_aborted); - data[12] = le16_to_cpu(counters->tx_underun); + data[12] = le16_to_cpu(counters->tx_underrun); } static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data) -- 2.43.0