You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
selectedRules.Add(GenerateRule("Feature.SMBD.SMBD Data Transfer",bothRdmaNicsdetected));
227
+
228
+
if(bothRdmaNicsdetected)
229
+
{
230
+
// select RDMA Channel if RDMA transport is supported
231
+
selectedRules.Add(GenerateRule("Feature.SMB2 over SMBD.SMB 30.RDMA Channel",detectionInfo.RDMATransportSupported));
232
+
233
+
// select Multiple Channels if both RDMA and Non-RDMA transports are supported
234
+
selectedRules.Add(GenerateRule("Feature.SMB2 over SMBD.SMB 30.Multiple Channels",detectionInfo.RDMATransportSupported&&detectionInfo.NonRDMATransportSupported));
235
+
236
+
// select RDMA Channel Remote Invalidation if RDMAChannelV1Invalidate is supported
237
+
selectedRules.Add(GenerateRule("Feature.SMB2 over SMBD.SMB 302.RDMA Channel Remote Invalidation",detectionInfo.RDMAChannelV1InvalidateSupported));
0 commit comments