From owner-cvs-all@FreeBSD.ORG Thu Jan 10 00:55:43 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C271F16A4DA; Thu, 10 Jan 2008 00:55:43 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id B866913C469; Thu, 10 Jan 2008 00:55:43 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m0A0thFk095668; Thu, 10 Jan 2008 00:55:43 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from kmacy@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m0A0th1G095667; Thu, 10 Jan 2008 00:55:43 GMT (envelope-from kmacy) Message-Id: <200801100055.m0A0th1G095667@repoman.freebsd.org> From: Kip Macy Date: Thu, 10 Jan 2008 00:55:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/cxgb cxgb_main.c cxgb_sge.c src/sys/dev/cxgb/common cxgb_t3_cpl.h src/sys/dev/cxgb/sys cxgb_support.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jan 2008 00:55:43 -0000 kmacy 2008-01-10 00:55:42 UTC FreeBSD src repository Modified files: sys/dev/cxgb cxgb_main.c cxgb_sge.c sys/dev/cxgb/common cxgb_t3_cpl.h sys/dev/cxgb/sys cxgb_support.c Log: - make 9k clusters the default unless a tunable is set - return the error from cxgb_tx_common so that when an error is hit we dont spin forever in the taskq thread - remove unused rxsd_ref - simplify header_offset calculation for embedded mbuf headers - fix memory leak by making sure that mbuf header initialization took place - disable printf's for stalled queue, don't do offload/ctrl queue restart when tunnel queue is restarted - add more diagnostic information about the txq state - add facility to dump the actual contents of the hardware queue using sysctl Revision Changes Path 1.6 +1 -0 src/sys/dev/cxgb/common/cxgb_t3_cpl.h 1.42 +10 -5 src/sys/dev/cxgb/cxgb_main.c 1.36 +206 -118 src/sys/dev/cxgb/cxgb_sge.c 1.3 +7 -2 src/sys/dev/cxgb/sys/cxgb_support.c