svn commit: r192706 - head/sys/dev/nfe

Pyun YongHyeon yongari at FreeBSD.org
Mon May 25 00:56:02 UTC 2009


Author: yongari
Date: Mon May 25 00:56:01 2009
New Revision: 192706
URL: http://svn.freebsd.org/changeset/base/192706

Log:
  NVIDIA MCP controllers have no Rx buffer alignment restrictions.
  Remove PAGE_SIZE alignment used in Rx buffer DMA tag creation. The
  alignment restriction was used in old local jumbo allocator and
  nfe(4) switched to UMA backed page allocator for jumbo frame.
  
  This change should fix jumbo buffer allocation failure.
  
  Reported by:	Pascal Braun ( pascal.braun <> continum dot net )

Modified:
  head/sys/dev/nfe/if_nfe.c

Modified: head/sys/dev/nfe/if_nfe.c
==============================================================================
--- head/sys/dev/nfe/if_nfe.c	Sun May 24 23:47:22 2009	(r192705)
+++ head/sys/dev/nfe/if_nfe.c	Mon May 25 00:56:01 2009	(r192706)
@@ -1153,7 +1153,7 @@ nfe_alloc_jrx_ring(struct nfe_softc *sc,
 
 	/* Create DMA tag for jumbo Rx buffers. */
 	error = bus_dma_tag_create(sc->nfe_parent_tag,
-	    PAGE_SIZE, 0,			/* alignment, boundary */
+	    1, 0,				/* alignment, boundary */
 	    BUS_SPACE_MAXADDR,			/* lowaddr */
 	    BUS_SPACE_MAXADDR,			/* highaddr */
 	    NULL, NULL,				/* filter, filterarg */


More information about the svn-src-head mailing list