DPDK-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Soumyadeep Hore <soumyadeep.hore@intel.com>
To: bruce.richardson@intel.com, manoj.kumar.subbarao@intel.com,
	aman.deep.singh@intel.com, dev@dpdk.org, rajesh3.kumar@intel.com
Subject: [PATCH v3] net/idpf: harden PTP frequency adjustment
Date: Wed,  6 May 2026 16:41:33 -0400	[thread overview]
Message-ID: <20260506204134.18634-1-soumyadeep.hore@intel.com> (raw)
In-Reply-To: <20260407200405.1568940-1-soumyadeep.hore@intel.com>

Use the direct __int128 calculation on 64-bit builds to keep the
frequency adjustment path short and readable, while preserving the
portable split-and-scale calculation on 32-bit builds where __int128
may be unavailable.

Both paths avoid the INT64_MIN negation issue in the original code.

Coverity issue: 501832

Signed-off-by: Soumyadeep Hore <soumyadeep.hore@intel.com>
---
v3:
- Fixed build failure for 32 bit systems
---
v2:
- Addressed Bruce's comments
---
 drivers/net/intel/idpf/idpf_ethdev.c | 78 ++++++++++++++++++----------
 1 file changed, 50 insertions(+), 28 deletions(-)

diff --git a/drivers/net/intel/idpf/idpf_ethdev.c b/drivers/net/intel/idpf/idpf_ethdev.c
index 5e57a45775..31291379d3 100644
--- a/drivers/net/intel/idpf/idpf_ethdev.c
+++ b/drivers/net/intel/idpf/idpf_ethdev.c
@@ -1005,42 +1005,64 @@ idpf_timesync_adjust_freq(struct rte_eth_dev *dev, int64_t ppm)
 	struct idpf_vport *vport = dev->data->dev_private;
 	struct idpf_adapter *adapter = vport->adapter;
 	struct idpf_ptp *ptp = adapter->ptp;
-	int64_t incval, diff = 0;
-	bool negative = false;
-	uint64_t div, rem;
-	uint64_t divisor = 1000000ULL << 16;
-	int shift;
+	uint64_t incval;
 	int ret;
 
 	incval = ptp->base_incval;
 
-	if (ppm < 0) {
-		negative = true;
-		ppm = -ppm;
-	}
-
-	/* can incval * ppm overflow ? */
-	if (rte_log2_u64(incval) + rte_log2_u64(ppm) > 62) {
-		rem = ppm % divisor;
-		div = ppm / divisor;
-		diff = div * incval;
-		ppm = rem;
+#ifdef RTE_ARCH_64
+	/* ppm is scaled by 2^16 to match Linux adjfine. */
+	{
+		__int128 diff;
+
+		diff = ((__int128)incval * ppm) / (1000000LL << 16);
+		incval += (int64_t)diff;
+	}
+#else
+	{
+		int64_t diff = 0;
+		bool negative = false;
+		uint64_t abs_ppm, div, rem;
+		uint64_t divisor = 1000000ULL << 16;
+		int shift;
+
+		if (ppm < 0) {
+			negative = true;
+			abs_ppm = ppm == INT64_MIN ? (uint64_t)INT64_MAX + 1 :
+				(uint64_t)(-ppm);
+		} else {
+			abs_ppm = (uint64_t)ppm;
+		}
 
-		shift = rte_log2_u64(incval) + rte_log2_u64(ppm) - 62;
-		if (shift > 0) {
-			/* drop precision */
-			ppm >>= shift;
-			divisor >>= shift;
+		/* can incval * ppm overflow ? */
+		if (rte_log2_u64(incval) + rte_log2_u64(abs_ppm) > 62) {
+			rem = abs_ppm % divisor;
+			div = abs_ppm / divisor;
+			diff = div * incval;
+			abs_ppm = rem;
+
+			if (abs_ppm != 0) {
+				uint32_t log_sum;
+
+				log_sum = rte_log2_u64(incval) + rte_log2_u64(abs_ppm);
+				if (log_sum > 62) {
+					shift = log_sum - 62;
+					/* drop precision */
+					abs_ppm >>= shift;
+					divisor >>= shift;
+				}
+			}
 		}
-	}
 
-	if (divisor)
-		diff = diff + incval * ppm / divisor;
+		if (divisor)
+			diff += incval * abs_ppm / divisor;
 
-	if (negative)
-		incval -= diff;
-	else
-		incval += diff;
+		if (negative)
+			incval -= diff;
+		else
+			incval += diff;
+	}
+#endif
 
 	ret = idpf_ptp_adj_dev_clk_fine(adapter, incval);
 	if (ret) {
-- 
2.47.1


      parent reply	other threads:[~2026-05-06  8:07 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-12 18:43 [PATCH v1] net/idpf: harden PTP frequency adjustment Soumyadeep Hore
2026-03-12 11:57 ` Bruce Richardson
2026-04-07 15:14   ` Stephen Hemminger
2026-04-07 15:56     ` Bruce Richardson
2026-04-07 20:04 ` [PATCH v2] " Soumyadeep Hore
2026-04-21 10:49   ` Bruce Richardson
2026-05-06 20:41   ` Soumyadeep Hore [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260506204134.18634-1-soumyadeep.hore@intel.com \
    --to=soumyadeep.hore@intel.com \
    --cc=aman.deep.singh@intel.com \
    --cc=bruce.richardson@intel.com \
    --cc=dev@dpdk.org \
    --cc=manoj.kumar.subbarao@intel.com \
    --cc=rajesh3.kumar@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox