diff options
author | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2004-08-19 18:26:30 +0000 |
---|---|---|
committer | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2004-08-19 18:26:30 +0000 |
commit | d96cfe3da79603e0ab0029e5a0341211996ec6e4 (patch) | |
tree | 44f51fee6c2dc509ff9c2204f0f4aa9e8244e25d /sys/dev | |
parent | a17ac5bd7c4d299e4593d8a5bd123903ca912cb9 (diff) |
#ifdef TI_VERBOSE around "no free jumbo buffers" printf.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_ti.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/if_ti.c b/sys/dev/pci/if_ti.c index fcb40591454..beee2005d7a 100644 --- a/sys/dev/pci/if_ti.c +++ b/sys/dev/pci/if_ti.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ti.c,v 1.52 2004/08/05 19:57:17 brad Exp $ */ +/* $OpenBSD: if_ti.c,v 1.53 2004/08/19 18:26:29 mcbride Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -679,7 +679,9 @@ void *ti_jalloc(sc) entry = SLIST_FIRST(&sc->ti_jfree_listhead); if (entry == NULL) { +#ifdef TI_VERBOSE printf("%s: no free jumbo buffers\n", sc->sc_dv.dv_xname); +#endif return(NULL); } |