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 D75BE199FC9; Wed, 2 Oct 2024 13:55:49 +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=1727877349; cv=none; b=SsKjh91C67DQlrZZfeNwHgVv8wndVHZIXJv2RKBAWYIt6FKYJBNanPtr8ihGAsgcaVMRDuw+RgzB8TsxxE21fFnKkD++r7A3h2sHtKzYYffrGfddbOYHISk7DtJpBpo5qwq3w7YLfM4sWFGBnXFUo7ch0OrsA/VGpZekSVKr4fc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1727877349; c=relaxed/simple; bh=prS5xwa2mnJUfsq7qX1s2Ir7GHGcFmjeKeXXuDwXQYI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ir25OnKb8b/oFADi5a0Nro3/lKeuKPJ6uUVtYrJLZvH0iISw98rAhzQNY/nWWYtkAJsjiJZsy1b8z8C4koTbcoTphcrD+50UUt3qEWo1H6aC3WrrW5ARy1wqfNfey8uK2MZo/Zp4Y36HUGWQ9ijlDb/QBxuIDBVDuP/bAmRYHvI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=TOlZP58S; 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="TOlZP58S" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5D2BDC4CECE; Wed, 2 Oct 2024 13:55:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1727877349; bh=prS5xwa2mnJUfsq7qX1s2Ir7GHGcFmjeKeXXuDwXQYI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=TOlZP58SSFrrzc8nKi3z35wYhvgtwSuMh3Y37r9f7LrbXzrZNO4TFm7O1fARLN4ex uMPf2IR5+wF/wTKtoKiVPaQJI08tdLz4qI6fGA2VHazqzJA2VWFtVZYv+KAviP4ZU9 B/GfcpuwUCtdHybjp0kW96imfYfx8O+AZ8533MQs= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Zhang Changzhong , Oleksij Rempel , Marc Kleine-Budde , Sasha Levin Subject: [PATCH 6.10 051/634] can: j1939: use correct function name in comment Date: Wed, 2 Oct 2024 14:52:31 +0200 Message-ID: <20241002125813.118835630@linuxfoundation.org> X-Mailer: git-send-email 2.46.2 In-Reply-To: <20241002125811.070689334@linuxfoundation.org> References: <20241002125811.070689334@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Zhang Changzhong [ Upstream commit dc2ddcd136fe9b6196a7dd01f75f824beb02d43f ] The function j1939_cancel_all_active_sessions() was renamed to j1939_cancel_active_session() but name in comment wasn't updated. Signed-off-by: Zhang Changzhong Acked-by: Oleksij Rempel Fixes: 9d71dd0c7009 ("can: add support of SAE J1939 protocol") Link: https://patch.msgid.link/1724935703-44621-1-git-send-email-zhangchangzhong@huawei.com Signed-off-by: Marc Kleine-Budde Signed-off-by: Sasha Levin --- net/can/j1939/transport.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/net/can/j1939/transport.c b/net/can/j1939/transport.c index 4be73de5033cb..319f47df33300 100644 --- a/net/can/j1939/transport.c +++ b/net/can/j1939/transport.c @@ -1179,10 +1179,10 @@ static enum hrtimer_restart j1939_tp_txtimer(struct hrtimer *hrtimer) break; case -ENETDOWN: /* In this case we should get a netdev_event(), all active - * sessions will be cleared by - * j1939_cancel_all_active_sessions(). So handle this as an - * error, but let j1939_cancel_all_active_sessions() do the - * cleanup including propagation of the error to user space. + * sessions will be cleared by j1939_cancel_active_session(). + * So handle this as an error, but let + * j1939_cancel_active_session() do the cleanup including + * propagation of the error to user space. */ break; case -EOVERFLOW: -- 2.43.0