Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RdmaWorkRequest (0.18 sec)

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

     */
    package jcifs.internal.smb2.rdma;
    
    /**
     * Represents a work request for RDMA operations.
     *
     * Work requests are used to track pending RDMA operations
     * and their completion status.
     */
    public class RdmaWorkRequest {
    
        /**
         * Type of RDMA work request
         */
        public enum RequestType {
            /** Send operation */
            SEND,
            /** Receive operation */
            RECEIVE,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/rdma/RdmaConnection.java

        /** Available receive credits for flow control */
        protected final AtomicInteger receiveCredits;
        /** Queue of pending RDMA work requests */
        protected final BlockingQueue<RdmaWorkRequest> pendingRequests;
    
        // Connection state
        /** Current connection state */
        protected volatile RdmaConnectionState state;
        /** Credit management for SMB Direct */
        protected RdmaCredits credits;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  3. docs/smb3-features/05-rdma-smb-direct-design.md

        protected final InetSocketAddress localAddress;
        protected final AtomicInteger sendCredits;
        protected final AtomicInteger receiveCredits;
        protected final BlockingQueue<RdmaWorkRequest> pendingRequests;
        
        // Connection state
        protected volatile RdmaConnectionState state;
        protected RdmaCredits credits;
        protected int maxFragmentedSize;
        protected int maxReadWriteSize;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
Back to top