Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RdmaCredits (0.04 sec)

  1. src/main/java/jcifs/config/PropertyConfiguration.java

                } catch (NumberFormatException e) {
                    // Invalid value ignored
                }
            }
    
            value = props.getProperty("jcifs.smb.client.rdmaCredits");
            if (value != null) {
                try {
                    this.rdmaCredits = Integer.parseInt(value);
                } catch (NumberFormatException e) {
                    // Invalid value ignored
                }
            }
    
            // RDMA port
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

                this.rdmaMaxSendSize = 65536; // 64KB
            }
            if (this.rdmaMaxReceiveSize == 0) {
                this.rdmaMaxReceiveSize = 65536; // 64KB
            }
            if (this.rdmaCredits == 0) {
                this.rdmaCredits = 255;
            }
        }
    
        /**
         * Parse channel binding policy from string
         *
         * @param policy policy string
         * @return policy constant
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  3. docs/smb3-features/05-rdma-smb-direct-design.md

        protected final AtomicInteger receiveCredits;
        protected final BlockingQueue<RdmaWorkRequest> pendingRequests;
        
        // Connection state
        protected volatile RdmaConnectionState state;
        protected RdmaCredits credits;
        protected int maxFragmentedSize;
        protected int maxReadWriteSize;
        
        public enum RdmaConnectionState {
            DISCONNECTED,
            CONNECTING,
            CONNECTED,
    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