svn commit: r341888 - stable/12/sys/ofed/drivers/infiniband/ulp/ipoib

Hans Petter Selasky hselasky at FreeBSD.org
Wed Dec 12 11:32:32 UTC 2018


Author: hselasky
Date: Wed Dec 12 11:32:31 2018
New Revision: 341888
URL: https://svnweb.freebsd.org/changeset/base/341888

Log:
  MFC r341537:
  ipoib: increase the non-cm queue length
  
  When a packet needs fragmentation, it might generate more than 3 fragments.
  With the queue length 3, all fragments are generated faster than the
  queue is drained, which effectively drops fourth and later fragments on
  the floor.
  
  Submitted by:   kib@
  Sponsored by:   Mellanox Technologies

Modified:
  stable/12/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib.h
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib.h
==============================================================================
--- stable/12/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib.h	Wed Dec 12 11:31:54 2018	(r341887)
+++ stable/12/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib.h	Wed Dec 12 11:32:31 2018	(r341888)
@@ -133,8 +133,8 @@ enum {
 
 	IPOIB_NUM_WC		  = 4,
 
-	IPOIB_MAX_PATH_REC_QUEUE  = 3,
-	IPOIB_MAX_MCAST_QUEUE	  = 3,
+	IPOIB_MAX_PATH_REC_QUEUE  = 16,
+	IPOIB_MAX_MCAST_QUEUE	  = 16,
 
 	IPOIB_FLAG_OPER_UP	  = 0,
 	IPOIB_FLAG_INITIALIZED	  = 1,


More information about the svn-src-stable-12 mailing list