remove superfluous debug printfs

This commit is contained in:
Kip Macy 2008-01-16 02:39:33 +00:00
parent e1f13773ec
commit 8030c630da
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=175378
2 changed files with 1 additions and 8 deletions

View File

@ -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)))

View File

@ -209,9 +209,6 @@ busdma_map_sg_collapse(struct mbuf **m, bus_dma_segment_t *segs, int *nsegs)
if (n->m_flags & M_PKTHDR && !SLIST_EMPTY(&n->m_pkthdr.tags))
m_tag_delete_chain(n, NULL);
if (cxgb_debug)
printf("cxgb_sge PIO_LEN=%zd\n", PIO_LEN);
if (n->m_pkthdr.len <= PIO_LEN)
return (0);
retry: