diff options
author | kmacy <kmacy@FreeBSD.org> | 2008-01-16 02:39:33 +0000 |
---|---|---|
committer | kmacy <kmacy@FreeBSD.org> | 2008-01-16 02:39:33 +0000 |
commit | 1e0f928b96cd46c64a197ac04f4ac3c5bc828d7a (patch) | |
tree | 7f9763d39ce8f06c43168590f3962aca99ee8d82 /sys/dev/cxgb/cxgb_sge.c | |
parent | 27739d97dc4eacfb70bddbd4c47d74b187f58d8c (diff) | |
download | FreeBSD-src-1e0f928b96cd46c64a197ac04f4ac3c5bc828d7a.zip FreeBSD-src-1e0f928b96cd46c64a197ac04f4ac3c5bc828d7a.tar.gz |
remove superfluous debug printfs
Diffstat (limited to 'sys/dev/cxgb/cxgb_sge.c')
-rw-r--r-- | sys/dev/cxgb/cxgb_sge.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/cxgb/cxgb_sge.c b/sys/dev/cxgb/cxgb_sge.c index 32c7ec7..b770f87 100644 --- a/sys/dev/cxgb/cxgb_sge.c +++ b/sys/dev/cxgb/cxgb_sge.c @@ -74,7 +74,7 @@ __FBSDID("$FreeBSD$"); int txq_fills = 0; static int bogus_imm = 0; -static int recycle_enable = 0; +static int recycle_enable = 1; extern int cxgb_txq_buf_ring_size; int cxgb_cached_allocations; int cxgb_cached; @@ -94,7 +94,6 @@ extern int cxgb_use_16k_clusters; */ #define TX_RECLAIM_PERIOD (hz >> 1) - /* * Values for sge_txq.flags */ @@ -1250,9 +1249,6 @@ t3_encap(struct sge_qset *qs, struct mbuf **m, int count) #endif KASSERT(txsd->mi.mi_base == NULL, ("overwrting valid entry mi_base==%p", txsd->mi.mi_base)); - if (cxgb_debug) - printf("uipc_mvec PIO_LEN=%zd\n", PIO_LEN); - if (count > 1) { panic("count > 1 not support in CVS\n"); if ((err = busdma_map_sg_vec(m, &m0, segs, count))) |