- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for recordRdmaRead (0.11 seconds)
-
src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java
/** * Record an RDMA read operation * * @param bytes number of bytes read * @param durationNanos operation duration in nanoseconds */ public void recordRdmaRead(int bytes, long durationNanos) { rdmaReads.incrementAndGet(); bytesTransferred.addAndGet(bytes); totalReadTime.addAndGet(durationNanos); } /** * Record an RDMA write operationCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 10.7K bytes - Click Count (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
private final AtomicLong rdmaReceives = new AtomicLong(); private final AtomicLong bytesTransferred = new AtomicLong(); private final AtomicLong operationErrors = new AtomicLong(); public void recordRdmaRead(int bytes) { rdmaReads.incrementAndGet(); bytesTransferred.addAndGet(bytes); } public void recordRdmaWrite(int bytes) { rdmaWrites.incrementAndGet();
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 35.9K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java
} } @Test public void testRdmaStatisticsTracking() throws Exception { RdmaStatistics stats = new RdmaStatistics(); // Simulate various RDMA operations stats.recordRdmaRead(1024, 1000000); // 1KB in 1ms stats.recordRdmaWrite(2048, 2000000); // 2KB in 2ms stats.recordRdmaSend(512, 500000); // 512B in 0.5ms stats.recordRdmaReceive(1536, 1500000); // 1.5KB in 1.5msCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 13.8K bytes - Click Count (0)