Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 11 Jun 2010 20:59:29 +0000 (UTC)
From:      Jack F Vogel <jfv@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r209070 - head/sys/dev/ixgbe
Message-ID:  <201006112059.o5BKxTNU088473@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jfv
Date: Fri Jun 11 20:59:29 2010
New Revision: 209070
URL: http://svn.freebsd.org/changeset/base/209070

Log:
  Change the mbuf memory calls back to NOWAIT as a
  problem has been seen in one case with doing the
  M_WAITOK

Modified:
  head/sys/dev/ixgbe/ixgbe.c

Modified: head/sys/dev/ixgbe/ixgbe.c
==============================================================================
--- head/sys/dev/ixgbe/ixgbe.c	Fri Jun 11 20:56:40 2010	(r209069)
+++ head/sys/dev/ixgbe/ixgbe.c	Fri Jun 11 20:59:29 2010	(r209070)
@@ -3642,7 +3642,7 @@ ixgbe_setup_receive_ring(struct rx_ring 
 			goto skip_head;
 
 		/* First the header */
-		rxbuf->m_head = m_gethdr(M_WAITOK, MT_DATA);
+		rxbuf->m_head = m_gethdr(M_NOWAIT, MT_DATA);
 		if (rxbuf->m_head == NULL) {
 			error = ENOBUFS;
 			goto fail;
@@ -3664,7 +3664,7 @@ ixgbe_setup_receive_ring(struct rx_ring 
 
 skip_head:
 		/* Now the payload cluster */
-		rxbuf->m_pack = m_getjcl(M_WAITOK, MT_DATA,
+		rxbuf->m_pack = m_getjcl(M_NOWAIT, MT_DATA,
 		    M_PKTHDR, adapter->rx_mbuf_sz);
 		if (rxbuf->m_pack == NULL) {
 			error = ENOBUFS;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201006112059.o5BKxTNU088473>