- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for RDMA (0.02 sec)
-
docs/smb3-features/05-rdma-smb-direct-design.md
} ``` ### 3.2 RDMA Provider Interface ```java package jcifs.internal.smb2.rdma; public interface RdmaProvider { /** * Check if RDMA is available on this system */ boolean isAvailable(); /** * Get supported RDMA capabilities */ Set<RdmaCapability> getSupportedCapabilities(); /** * Create RDMA connection to remote endpoint */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
├── RdmaBuffer.java - RDMA buffer management ├── RdmaChannel.java - RDMA channel operations └── RdmaProvider.java - RDMA provider abstraction ``` #### 5.2 Implementation Tasks - [ ] Research Java RDMA libraries (e.g., DiSNI, JXIO) - [ ] Implement RDMA capability detection - [ ] Create RDMA negotiation context - [ ] Implement RDMA transport layer
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java
*/ package jcifs.internal.smb2.rdma; import java.io.IOException; import java.net.SocketException; import java.net.SocketTimeoutException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * RDMA error handling and recovery logic. * * This class provides centralized error handling for RDMA operations, * including retry logic and fallback mechanisms. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java
/** * Integration tests for RDMA functionality. * * This class contains both unit tests (that always run) and integration tests * (that require system properties to be set for execution). * * Integration tests require system properties: * - rdma.test.enabled=true (to enable RDMA integration tests) * - rdma.test.server=hostname/IP (target server for testing) * - rdma.test.port=445 (target port, defaults to 445) */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java
*/ package jcifs.internal.smb2.rdma; import java.util.concurrent.atomic.AtomicLong; /** * RDMA performance statistics and monitoring. * * This class tracks various RDMA operation metrics for performance * monitoring and troubleshooting purposes. */ public class RdmaStatistics { /** * Creates a new RDMA statistics tracker */ public RdmaStatistics() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java
*/ package jcifs.internal.smb2.rdma.disni; import java.io.IOException; import java.net.InetSocketAddress; import java.nio.ByteBuffer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.internal.smb2.rdma.RdmaConnection; import jcifs.internal.smb2.rdma.RdmaMemoryRegion; import jcifs.internal.smb2.rdma.RdmaNegotiateRequest; import jcifs.internal.smb2.rdma.RdmaNegotiateResponse; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java
* * @return true if RSS capable */ public boolean isRssCapable() { return rssCapable; } /** * Check if RDMA is supported * * @return true if RDMA capable */ public boolean isRdmaCapable() { return rdmaCapable; } /** * Check if this interface is usable for multi-channel *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
protected int channelHealthCheckInterval; // RDMA configuration /** * Flag indicating whether RDMA transport should be used when available */ protected boolean useRDMA; /** * RDMA provider implementation to use (e.g. "disni" or "tcp") */ protected String rdmaProvider; /** * Minimum size in bytes for using RDMA read/write operations */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/jcifs/config/PropertyConfiguration.java
this.maxDirectoryCacheEntries = Integer.parseInt(value); } catch (NumberFormatException e) { // Invalid value ignored } } // RDMA Configuration value = props.getProperty("jcifs.smb.client.useRDMA"); if (value != null) { this.useRDMA = Boolean.parseBoolean(value); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13.3K bytes - Viewed (0)