Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for RDMA (0.13 sec)

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

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.internal.smb2.rdma;
    
    import jcifs.internal.util.SMBUtil;
    
    /**
     * SMB Direct Negotiate Request message.
     *
     * As per MS-SMBD 2.2.1 - SMB_DIRECT_NEGOTIATE_REQUEST
     * This message is sent to negotiate SMB Direct protocol parameters.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java

                assertEquals(0x02, buffer[3]);
                assertArrayEquals(newFileId, Arrays.copyOfRange(buffer, 16, 32));
            }
    
            @Test
            @DisplayName("Should handle read request with RDMA channel")
            void testReadRequestWithRdmaChannel() {
                request.setReadLength(65536);
                request.setOffset(0L);
                // Note: channel is private and not settable via public API
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  3. docs/smb3-features/03-multi-channel-design.md

            int score = linkSpeed;  // Base score is link speed
            
            if (rssCapable) score += 1000;   // Prefer RSS-capable
            if (rdmaCapable) score += 2000;  // Prefer RDMA-capable
            if (!ipv6) score += 100;         // Slight preference for IPv4
            
            return score;
        }
        
        private boolean checkRSSCapability() {
            // Platform-specific RSS detection
    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