- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for rdmaRead (0.08 sec)
-
src/main/java/jcifs/internal/smb2/rdma/RdmaTransport.java
* @param remoteKey remote access key * @param length number of bytes to read * @return number of bytes read * @throws IOException if operation fails */ public int rdmaRead(ByteBuffer buffer, long remoteAddress, int remoteKey, int length) throws IOException { if (!isRdmaConnected()) { throw new IOException("RDMA connection not available"); } try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaConnection.java
} catch (IOException e) { state = RdmaConnectionState.ERROR; throw new IOException("TCP RDMA receive failed", e); } } @Override public void rdmaRead(RdmaMemoryRegion localRegion, long remoteAddress, int remoteKey, int length) throws IOException { // TCP fallback doesn't support real RDMA read
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaConnection.java
* @param remoteAddress remote memory address * @param remoteKey remote memory key * @param length number of bytes to read * @throws IOException if read fails */ public abstract void rdmaRead(RdmaMemoryRegion localRegion, long remoteAddress, int remoteKey, int length) throws IOException; /** * Perform RDMA write operation * * @param localRegion local memory region to write from
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaCapability.java
/** * RDMA capability flags indicating what operations are supported * by an RDMA provider implementation. */ public enum RdmaCapability { /** * Remote direct read operations */ RDMA_READ, /** * Remote direct write operations */ RDMA_WRITE, /** * Traditional send/receive with RDMA */ RDMA_SEND_RECEIVE, /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 1.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaProviderTest.java
assertTrue(capabilities.contains(RdmaCapability.RDMA_SEND_RECEIVE), "Should support send/receive"); assertFalse(capabilities.contains(RdmaCapability.RDMA_READ), "Should not support RDMA read"); assertFalse(capabilities.contains(RdmaCapability.RDMA_WRITE), "Should not support RDMA write"); } @Test public void testCreateConnection() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.2K bytes - Viewed (0)