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 2C0E0415F10; Tue, 21 Jul 2026 21:34:06 +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=1784669650; cv=none; b=B/qxEMBjG8ni+9p3gtDUBWipn0X3RaBTBYhMTSIznI2jLevIvxw5qA2heMX+MmzazNIMRUiySuixJh2Okv7yHAkA0wDEZf2qYDDTfWNHtjcpgztRDQYncawLkWlQGY0y3K90eVAGWht4JYxOizl/8u7H7hTCSCudktjjmQjCyJg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784669650; c=relaxed/simple; bh=fKd+K+tQ8AkZ3qKYqZ+Gpk4dtk3vuXkh009DHihfFEU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=mBISfxAsY11ePo5bZ/iBbIRt0jTFfB8KpwdNyQKR9RPjR5+AGBiFhwyQHe7tLFAWBr9alUgjLIySeHxBK6/vvLOxkZ2/QUUvm5F/7th/HV1hdF3J2fdQ5IxIb+SstSaKMVv3UIA4zEXCdOYBbDKriYJHyvqcdCKa+xfkYC4adlE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=iSj9sXAC; 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="iSj9sXAC" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D52F71F00A3A; Tue, 21 Jul 2026 21:34:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784669645; bh=l6v+6YxZlIJoEwr29nu6tkHfu2plCOTPMTskqu3kYHA=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=iSj9sXACIL3c5d2V+g5Hvd+SDtQT/NZrV2gI7LGmNg2Qds170Y+39vtO15zmAlidG YNDNK8wD0qL5WqXqrsCo84N4d5QG3aVZFinfl+pYuBWSp1mBYf15zOxAgfHKboFU1a 8DVJHAlUCvcR31321fQ5C3IKqwPj1GlzIl3Ji8h8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Aleksandrova Alyona , Jakub Kicinski , Sasha Levin Subject: [PATCH 6.1 0633/1067] net: dsa: sja1105: round up PTP perout pin duration Date: Tue, 21 Jul 2026 17:20:34 +0200 Message-ID: <20260721152438.755895365@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152424.521567757@linuxfoundation.org> References: <20260721152424.521567757@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 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Aleksandrova Alyona [ Upstream commit aee5836273b07b439fb245fb43930664d8b78518 ] pin_duration is converted from the user-provided period to SJA1105 clock ticks and is later passed as the cycle_time argument to future_base_time(). Very small period values may become zero after the conversion, which can lead to a division by zero in future_base_time(). Round zero pin_duration up to 1 tick so that the smallest unsupported periods use the minimum non-zero hardware duration instead of passing zero to future_base_time(). Fixes: 747e5eb31d59 ("net: dsa: sja1105: configure the PTP_CLK pin as EXT_TS or PER_OUT") Signed-off-by: Aleksandrova Alyona Link: https://patch.msgid.link/20260618110508.53094-1-aga@itb.spb.ru Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- drivers/net/dsa/sja1105/sja1105_ptp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/dsa/sja1105/sja1105_ptp.c b/drivers/net/dsa/sja1105/sja1105_ptp.c index a7d41e7813982e..afb11690c21712 100644 --- a/drivers/net/dsa/sja1105/sja1105_ptp.c +++ b/drivers/net/dsa/sja1105/sja1105_ptp.c @@ -755,7 +755,7 @@ static int sja1105_per_out_enable(struct sja1105_private *priv, * 2 edges on PTP_CLK. So check for truncation which happens * at periods larger than around 68.7 seconds. */ - pin_duration = ns_to_sja1105_ticks(pin_duration / 2); + pin_duration = max_t(u64, ns_to_sja1105_ticks(pin_duration / 2), 1); if (pin_duration > U32_MAX) { rc = -ERANGE; goto out; -- 2.53.0