From owner-svn-src-user@FreeBSD.ORG Mon Jun 8 23:36:53 2009 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A8C11065740; Mon, 8 Jun 2009 23:36:53 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id ECE838FC14; Mon, 8 Jun 2009 23:36:52 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n58Naqfa047948; Mon, 8 Jun 2009 23:36:52 GMT (envelope-from kmacy@svn.freebsd.org) Received: (from kmacy@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n58Naqbo047947; Mon, 8 Jun 2009 23:36:52 GMT (envelope-from kmacy@svn.freebsd.org) Message-Id: <200906082336.n58Naqbo047947@svn.freebsd.org> From: Kip Macy Date: Mon, 8 Jun 2009 23:36:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r193781 - user/kmacy/releng_7_2_fcs/sys/dev/cxgb X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2009 23:36:53 -0000 Author: kmacy Date: Mon Jun 8 23:36:52 2009 New Revision: 193781 URL: http://svn.freebsd.org/changeset/base/193781 Log: make coalescing more aggressive Modified: user/kmacy/releng_7_2_fcs/sys/dev/cxgb/cxgb_sge.c Modified: user/kmacy/releng_7_2_fcs/sys/dev/cxgb/cxgb_sge.c ============================================================================== --- user/kmacy/releng_7_2_fcs/sys/dev/cxgb/cxgb_sge.c Mon Jun 8 23:36:35 2009 (r193780) +++ user/kmacy/releng_7_2_fcs/sys/dev/cxgb/cxgb_sge.c Mon Jun 8 23:36:52 2009 (r193781) @@ -234,14 +234,14 @@ check_pkt_coalesce(struct sge_qset *qs) fill = &sc->tunq_fill[qs->idx]; /* - * if the hardware transmit queue is more than 1/2 full + * if the hardware transmit queue is more than 1/4 full * we mark it as coalescing - we drop back from coalescing - * when we go below 1/8 full, this provides us with some + * when we go below 1/16 full, this provides us with some * degree of hysteresis */ - if (*fill != 0 && (txq->in_use < (txq->size>>3))) + if (*fill != 0 && (txq->in_use < (txq->size>>4))) *fill = 0; - else if (*fill == 0 && (txq->in_use >= (txq->size - (txq->size>>1)))) + else if (*fill == 0 && (txq->in_use >= (txq->size>>2))) *fill = 1; return (sc->tunq_coalesce);