From a9caffba47330999d0e4dec55fe455deecc5bcbb Mon Sep 17 00:00:00 2001 From: Mike Silbersack Date: Thu, 9 May 2002 20:21:07 +0000 Subject: [PATCH] Change the mbuf exhaustion warning message to match the message in -stable. --- sys/kern/subr_mbuf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/kern/subr_mbuf.c b/sys/kern/subr_mbuf.c index 008dea5ad13..5058a262f19 100644 --- a/sys/kern/subr_mbuf.c +++ b/sys/kern/subr_mbuf.c @@ -631,7 +631,8 @@ mb_alloc(struct mb_lstmngr *mb_list, int how, short type) (ticks - last_report) >= hz) { last_report = ticks; printf( -"mb_alloc for mbuf type %d failed.\n", type); +"All mbufs exhausted, please see tuning(7).\n", type); +/* XXX: Actually could be clusters, but it gets the point across. */ } }