Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for rdmaWrite (1.23 sec)

  1. src/main/java/jcifs/internal/smb2/rdma/RdmaTransport.java

         * @param remoteKey remote access key
         * @param length number of bytes to write
         * @return number of bytes written
         * @throws IOException if operation fails
         */
        public int rdmaWrite(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)
  2. src/main/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaConnection.java

            // TCP fallback doesn't support real RDMA read
            throw new UnsupportedOperationException("RDMA read not supported by TCP fallback");
        }
    
        @Override
        public void rdmaWrite(RdmaMemoryRegion localRegion, long remoteAddress, int remoteKey, int length) throws IOException {
            // TCP fallback doesn't support real RDMA write
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  3. 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 write
         * @throws IOException if write fails
         */
        public abstract void rdmaWrite(RdmaMemoryRegion localRegion, long remoteAddress, int remoteKey, int length) throws IOException;
    
        /**
         * Negotiate RDMA parameters
         *
         * @param request negotiation request parameters
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  4. docs/smb3-features/05-rdma-smb-direct-design.md

        }
        
        public void recordRdmaWrite(int bytes) {
            rdmaWrites.incrementAndGet();
            bytesTransferred.addAndGet(bytes);
        }
        
        public void recordError() {
            operationErrors.incrementAndGet();
        }
        
        public double getErrorRate() {
            long total = rdmaReads.get() + rdmaWrites.get() + rdmaSends.get() + rdmaReceives.get();
            if (total == 0) return 0.0;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java

            } catch (Exception e) {
                state = RdmaConnectionState.ERROR;
                throw new IOException("DiSNI RDMA read failed", e);
            }
        }
    
        @Override
        public void rdmaWrite(RdmaMemoryRegion localRegion, long remoteAddress, int remoteKey, int length) throws IOException {
            if (state != RdmaConnectionState.ESTABLISHED) {
                throw new IOException("Connection not established");
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java

         * Creates a new RDMA statistics tracker
         */
        public RdmaStatistics() {
            // Default constructor
        }
    
        private final AtomicLong rdmaReads = new AtomicLong();
        private final AtomicLong rdmaWrites = new AtomicLong();
        private final AtomicLong rdmaSends = new AtomicLong();
        private final AtomicLong rdmaReceives = new AtomicLong();
        private final AtomicLong bytesTransferred = new AtomicLong();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/rdma/RdmaCapability.java

     * 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,
    
        /**
         * Dynamic memory registration
         */
        MEMORY_REGISTRATION,
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaProviderTest.java

            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 {
            InetSocketAddress remote = new InetSocketAddress("localhost", 445);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 4.2K bytes
    - Viewed (0)
Back to top