Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DisniMemoryRegion (0.35 sec)

  1. src/main/java/jcifs/internal/smb2/rdma/disni/DisniMemoryRegion.java

     *
     * Note: This is a skeleton implementation. A real implementation would
     * require proper DiSNI integration with actual memory registration.
     */
    public class DisniMemoryRegion extends RdmaMemoryRegion {
    
        private static final Logger log = LoggerFactory.getLogger(DisniMemoryRegion.class);
        private static final AtomicInteger keyGenerator = new AtomicInteger(2000);
        private static final AtomicLong addressCounter = new AtomicLong(0x10000000L);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java

                throw new IOException("Connection not established");
            }
    
            try {
                // In real implementation, this would send using DiSNI:
                // DisniMemoryRegion disniRegion = (DisniMemoryRegion) region;
                // IbvSendWR sendWR = new IbvSendWR();
                // sendWR.setWr_id(System.nanoTime());
                // sendWR.setOpcode(IbvSendWR.IbvWrOpcode.IBV_WR_SEND.ordinal());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  3. docs/smb3-features/05-rdma-smb-direct-design.md

            }
        }
        
        @Override
        public void send(ByteBuffer data, RdmaMemoryRegion region) throws IOException {
            try {
                DisniMemoryRegion disniRegion = (DisniMemoryRegion) region;
                IbvSendWR sendWR = new IbvSendWR();
                sendWR.setWr_id(System.nanoTime());
                sendWR.setOpcode(IbvSendWR.IbvWrOpcode.IBV_WR_SEND.ordinal());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaProvider.java

            return connection;
        }
    
        @Override
        public RdmaMemoryRegion registerMemory(ByteBuffer buffer, EnumSet<RdmaAccess> access) throws IOException {
            ensureInitialized();
            return new DisniMemoryRegion(buffer, access, endpoint);
        }
    
        /**
         * Initialize DiSNI components if not already initialized
         *
         * @throws IOException if initialization fails
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top