diff options
author | nate <nate@FreeBSD.org> | 1996-06-20 15:41:23 +0000 |
---|---|---|
committer | nate <nate@FreeBSD.org> | 1996-06-20 15:41:23 +0000 |
commit | 5f700938685a548f91e6ee1c05ef3210a7730041 (patch) | |
tree | 78cdeaa55867826cb95668b53219dd69be2bdeba /sys | |
parent | 4f19282db200b9cbce2ab019ad8271988d231c12 (diff) | |
download | FreeBSD-src-5f700938685a548f91e6ee1c05ef3210a7730041.zip FreeBSD-src-5f700938685a548f91e6ee1c05ef3210a7730041.tar.gz |
Put the 'debug' messages of the type:
/kernel: in_rtqtimo: adjusted rtq_reallyold to 1066
/kernel: in_rtqtimo: adjusted rtq_reallyold to 710
inside of #ifdef DIAGNOSTIC to avoid the support questions from folks
asking what this means.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/in_rmx.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/netinet/in_rmx.c b/sys/netinet/in_rmx.c index 2d671e5..e373c97 100644 --- a/sys/netinet/in_rmx.c +++ b/sys/netinet/in_rmx.c @@ -26,7 +26,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: in_rmx.c,v 1.24 1996/04/26 18:31:41 wollman Exp $ + * $Id: in_rmx.c,v 1.25 1996/05/06 17:42:12 wollman Exp $ */ /* @@ -328,8 +328,10 @@ in_rtqtimo(void *rock) } last_adjusted_timeout = time.tv_sec; +#ifdef DIAGNOSTIC log(LOG_DEBUG, "in_rtqtimo: adjusted rtq_reallyold to %d\n", rtq_reallyold); +#endif arg.found = arg.killed = 0; arg.updating = 1; s = splnet(); |