diff options
-rw-r--r-- | sys/dev/cxgb/cxgb_sge.c | 2 | ||||
-rw-r--r-- | sys/dev/cxgb/sys/uipc_mvec.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/cxgb/cxgb_sge.c b/sys/dev/cxgb/cxgb_sge.c index 06ab98d..b758ac7 100644 --- a/sys/dev/cxgb/cxgb_sge.c +++ b/sys/dev/cxgb/cxgb_sge.c @@ -1251,7 +1251,7 @@ t3_encap(struct sge_qset *qs, struct mbuf **m, int count) KASSERT(txsd->mi.mi_base == NULL, ("overwrting valid entry mi_base==%p", txsd->mi.mi_base)); if (cxgb_debug) - printf("uipc_mvec PIO_LEN=%ld\n", PIO_LEN); + printf("uipc_mvec PIO_LEN=%zd\n", PIO_LEN); if (count > 1) { panic("count > 1 not support in CVS\n"); diff --git a/sys/dev/cxgb/sys/uipc_mvec.c b/sys/dev/cxgb/sys/uipc_mvec.c index 4d4354f..f081b3c 100644 --- a/sys/dev/cxgb/sys/uipc_mvec.c +++ b/sys/dev/cxgb/sys/uipc_mvec.c @@ -209,7 +209,7 @@ busdma_map_sg_collapse(struct mbuf **m, bus_dma_segment_t *segs, int *nsegs) m_tag_delete_chain(n, NULL); if (cxgb_debug) - printf("cxgb_sge PIO_LEN=%ld\n", PIO_LEN); + printf("cxgb_sge PIO_LEN=%zd\n", PIO_LEN); if (n->m_pkthdr.len <= PIO_LEN) return (0); |