Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for checkRSSCapability (0.67 sec)

  1. src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java

            this.address = address;
            this.linkSpeed = linkSpeed;
            this.ipv6 = address.getAddress().length == 16;
            this.capability = 0;
    
            // Check for RSS capability
            this.rssCapable = checkRSSCapability();
            if (rssCapable) {
                this.capability |= Smb2ChannelCapabilities.NETWORK_INTERFACE_CAP_RSS;
            }
    
            // RDMA capability would require OS-specific detection
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  2. docs/smb3-features/03-multi-channel-design.md

            this.ipv6 = address.getAddress().length == 16;
            this.capability = 0;
            
            // Check for RSS capability (simplified - would need OS-specific checks)
            this.rssCapable = checkRSSCapability();
            if (rssCapable) {
                this.capability |= NETWORK_INTERFACE_CAP_RSS;
            }
        }
        
        public boolean isUsableForChannel() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
Back to top