>Number:         183381
>Category:       kern
>Synopsis:       Use of 9k buffers in if_em.c hangs with resource starvation
>Confidential:   no
>Severity:       serious
>Priority:       high
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Oct 28 05:10:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     David Gilbert
>Release:        FreeBSD 9.2-STABLE amd64
>Organization:
DaveG.ca
>Environment:
System: FreeBSD virtual.accountingreality.com 9.2-STABLE FreeBSD 9.2-STABLE #14 
r256870M: Sat Oct 26 02:11:37 EDT 2013 
r...@virtual.accountingreality.com:/usr/obj/usr/src/sys/VRA amd64


As above, but I think this affects all current versions of the driver.
>Description:
I have a ZFS server here that also runs a number of other services
and has 9k packets turned on.  It hangs every day or two with it's
current load.  I had a number of theories on the problem ... but it
seems that 9k buffer allocation is a problem when other resources
are stressed.  In the email list discussion which I will pin to
this pr after I submit it, GAWollman noted that the 9k buffer
allocation may not be required by the code in if_em.c, and,
indeed, when I removed it, it wasn't.  Not only was it not required,
but removing it fixed the hangs.

I suppose the argument, then, is, that the more efficient path
is to use page-sized buffers and scatter-gather --- which
apparently everything supports (he is my only reference
for this statement).
>How-To-Repeat:
This might be challenging.  The server has 8 Gig of RAM, 17 disks in ZFS
and another 2 disks in UFS service.  ZFS serves SMB, NFS (v3), and
iSCSI to a GigE lan with 9k packets enabled.  The system also
runs (signiciant) postgreSQL, rtorrent and apache loads.  Of all of
these, the rtorrent and iSCSI loads seem to be most involved in
replicating this problem.
>Fix:


Index: if_em.c
===================================================================
--- if_em.c     (revision 256870)
+++ if_em.c     (working copy)
@@ -1343,10 +1343,8 @@
        */
        if (adapter->hw.mac.max_frame_size <= 2048)
                adapter->rx_mbuf_sz = MCLBYTES;
-       else if (adapter->hw.mac.max_frame_size <= 4096)
+       else
                adapter->rx_mbuf_sz = MJUMPAGESIZE;
-       else
-               adapter->rx_mbuf_sz = MJUM9BYTES;
 
        /* Prepare receive descriptors and buffers */
        if (em_setup_receive_structures(adapter)) {


>Release-Note:
>Audit-Trail:
>Unformatted:
_______________________________________________
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"

Reply via email to