<br><br><div><span class="gmail_quote">On 9/30/05, <b class="gmail_sendername">James Lentini</b> <<a href="mailto:jlentini@netapp.com">jlentini@netapp.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br><br>On Fri, 30 Sep 2005, Todd Bowman wrote:<br><br>> udapl is using 0x115d3. How is this set and what value should it be?<br>><br>> Todd<br><br>On InfiniBand, uDAPL maps connection qualifiers onto service IDs
<br>(SIDs).<br><br>The connection qualifier is chosen by the uDAPL application when it<br>creates a Public Service Point (PSP) or Reserved Service Point (RSP).<br><br>As Arlin noted, 0x115d3 is in the SDP range. The dapltest test tools
<br>uses 0xB0de. I would try any value except those in the range<br>0x10000-0x1fffff and 0xB0de.<br><br>james<br></blockquote></div><br>
<br>
Here is a patch for dtest.c to remove the qualifier from the sdp range.  <br>
<br>
Index: userspace/dapl/test/dtest/dtest.c<br>
===================================================================<br>
--- userspace/dapl/test/dtest/dtest.c   (revision 3547)<br>
+++ userspace/dapl/test/dtest/dtest.c   (working copy)<br>
@@ -53,7 +53,7 @@<br>
 #include    "dat/udat.h"<br>
<br>
 /* definitions */<br>
-#define SERVER_CONN_QUAL    71123<br>
+#define SERVER_CONN_QUAL    45248<br>
 #define DTO_TIMEOUT        (1000*1000*5)<br>
 #define DTO_FLUSH_TIMEOUT   (1000*1000*2)<br>
 #define CONN_TIMEOUT        (1000*1000*10)<br>
<br>