From 553fd3b2d8e3524f8b587777e7ca934822cd9e0a Mon Sep 17 00:00:00 2001 From: Changho Hwang Date: Wed, 1 Apr 2026 21:20:55 +0000 Subject: [PATCH] lint --- src/core/connection.cc | 8 ++++---- src/core/include/connection.hpp | 1 - 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/core/connection.cc b/src/core/connection.cc index db978943..26d9e169 100644 --- a/src/core/connection.cc +++ b/src/core/connection.cc @@ -411,11 +411,11 @@ void IBConnection::updateAndSync(RegisteredMemory dst, uint64_t dstOffset, uint6 // detection (tokens are monotonically increasing, so a decrease in the lower 32 bits // indicates the upper 32 bits incremented by 1). if (newValue <= oldValue) { - WARN(CONN, "IBConnection signal forwarding: token is not monotonically increasing: ", oldValue, " -> ", - newValue); + WARN(CONN, "IBConnection signal forwarding: token is not monotonically increasing: ", oldValue, " -> ", newValue); } else if (newValue - oldValue >= (1ULL << 32)) { - WARN(CONN, "IBConnection signal forwarding: token increment too large for 32-bit wrap-around detection: ", - oldValue, " -> ", newValue, " (delta ", newValue - oldValue, " >= 2^32)"); + WARN(CONN, + "IBConnection signal forwarding: token increment too large for 32-bit wrap-around detection: ", oldValue, + " -> ", newValue, " (delta ", newValue - oldValue, " >= 2^32)"); } unsigned int immData = static_cast(newValue); qp_.lock()->stageSendWriteWithImm(nullptr, dstMrInfo, diff --git a/src/core/include/connection.hpp b/src/core/include/connection.hpp index 432ce9ab..c744b168 100644 --- a/src/core/include/connection.hpp +++ b/src/core/include/connection.hpp @@ -120,7 +120,6 @@ class IBConnection : public BaseConnection { // incremented), then writes it to signalAddr_ via atomicStore through GDRCopy BAR1. uint64_t signalAddr_; - std::unique_ptr signalGdrMap_; void recvThreadFunc();