Date: Wed, 23 Dec 2009 12:33:59 +0000 (UTC) From: Robert Watson <rwatson@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r200899 - head/sys/net Message-ID: <200912231233.nBNCXxV0098179@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rwatson Date: Wed Dec 23 12:33:59 2009 New Revision: 200899 URL: http://svn.freebsd.org/changeset/base/200899 Log: When warning about possible netisr configuration problems during boot, report using "netisr_init" rather than "netisr2", which was the development name for the project. MFC after: 3 days Modified: head/sys/net/netisr.c Modified: head/sys/net/netisr.c ============================================================================== --- head/sys/net/netisr.c Wed Dec 23 12:31:27 2009 (r200898) +++ head/sys/net/netisr.c Wed Dec 23 12:33:59 2009 (r200899) @@ -1076,12 +1076,12 @@ netisr_init(void *arg) if (netisr_maxthreads < 1) netisr_maxthreads = 1; if (netisr_maxthreads > mp_ncpus) { - printf("netisr2: forcing maxthreads from %d to %d\n", + printf("netisr_init: forcing maxthreads from %d to %d\n", netisr_maxthreads, mp_ncpus); netisr_maxthreads = mp_ncpus; } if (netisr_defaultqlimit > netisr_maxqlimit) { - printf("netisr2: forcing defaultqlimit from %d to %d\n", + printf("netisr_init: forcing defaultqlimit from %d to %d\n", netisr_defaultqlimit, netisr_maxqlimit); netisr_defaultqlimit = netisr_maxqlimit; } @@ -1092,8 +1092,8 @@ netisr_init(void *arg) * polling disables parallel netisr workers. */ if (netisr_maxthreads != 1 || netisr_bindthreads != 0) { - printf("netisr2: forcing maxthreads to 1 and bindthreads to " - "0 for device polling\n"); + printf("netisr_init: forcing maxthreads to 1 and " + "bindthreads to 0 for device polling\n"); netisr_maxthreads = 1; netisr_bindthreads = 0; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200912231233.nBNCXxV0098179>