svn commit: r280593 - stable/10/sys/dev/sfxge/common

Andrew Rybchenko arybchik at FreeBSD.org
Wed Mar 25 13:15:48 UTC 2015


Author: arybchik
Date: Wed Mar 25 13:15:47 2015
New Revision: 280593
URL: https://svnweb.freebsd.org/changeset/base/280593

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

Modified:
  stable/10/sys/dev/sfxge/common/efx_impl.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/sfxge/common/efx_impl.h
==============================================================================
--- stable/10/sys/dev/sfxge/common/efx_impl.h	Wed Mar 25 13:14:50 2015	(r280592)
+++ stable/10/sys/dev/sfxge/common/efx_impl.h	Wed Mar 25 13:15:47 2015	(r280593)
@@ -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