svn commit: r279266 - head/sys/dev/sfxge/common

Andrew Rybchenko arybchik at FreeBSD.org
Wed Feb 25 06:19:01 UTC 2015


Author: arybchik
Date: Wed Feb 25 06:19:00 2015
New Revision: 279266
URL: https://svnweb.freebsd.org/changeset/base/279266

Log:
  sfxge: correct limit for number of Rx queues
  
  Sponsored by:   Solarflare Communications, Inc.
  Approved by:    gnn (mentor)

Modified:
  head/sys/dev/sfxge/common/efx_impl.h

Modified: head/sys/dev/sfxge/common/efx_impl.h
==============================================================================
--- head/sys/dev/sfxge/common/efx_impl.h	Wed Feb 25 05:56:54 2015	(r279265)
+++ head/sys/dev/sfxge/common/efx_impl.h	Wed Feb 25 06:19:00 2015	(r279266)
@@ -204,7 +204,7 @@ typedef struct efx_nic_ops_s {
 # define EFX_TXQ_LIMIT_TARGET 259
 #endif
 #ifndef EFX_RXQ_LIMIT_TARGET
-# define EFX_RXQ_LIMIT_TARGET 768
+# define EFX_RXQ_LIMIT_TARGET 512
 #endif
 #ifndef EFX_TXQ_DC_SIZE
 #define EFX_TXQ_DC_SIZE 1 /* 16 descriptors */


More information about the svn-src-all mailing list