On Thursday 20 March 2008 21:59, Hoang-Nam Nguyen wrote:
> Hi Roland and Eli!
> >+enum qp_create_flags {
> >+    QP_CREATE_LSO = 1 << 0,
> >+};
> Our ehca2 supports sort of low-latency QP for UD and RC. It would be great
> if we can e.g. enhance above enum like this
> QP_CREATE_LL = 1 << 1
> If you agree with, I'll create a patch. For kernel space the changes within
> ehca should not be that much.
> Thx
> Nam
> 
Please use QP_CREATE_LL  1 << 2

I'm already using 1<<1 for XRC receive QPs:
 enum qp_create_flags {
-       QP_CREATE_LSO = 1 << 0,
+       QP_CREATE_LSO     = 1 << 0,
+       QP_CREATE_XRC_RCV = 1 << 1,
 };

(from OFA 1.3, file kernel_patches/fixes/core_0110_xrc_rcv.patch)

Thanks!

- Jack

> _______________________________________________
> general mailing list
> [email protected]
> http://lists.openfabrics.org/cgi-bin/mailman/listinfo/general
> 
> To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general
> 
_______________________________________________
general mailing list
[email protected]
http://lists.openfabrics.org/cgi-bin/mailman/listinfo/general

To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general

Reply via email to