svn commit: r222851 - stable/8/sys/netinet/ipfw
Andrey V. Elsukov
ae at FreeBSD.org
Wed Jun 8 04:57:14 UTC 2011
Author: ae
Date: Wed Jun 8 04:57:14 2011
New Revision: 222851
URL: http://svn.freebsd.org/changeset/base/222851
Log:
MFC r222560:
Hide some debug messages under debug macro.
Modified:
stable/8/sys/netinet/ipfw/ip_dummynet.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
Modified: stable/8/sys/netinet/ipfw/ip_dummynet.c
==============================================================================
--- stable/8/sys/netinet/ipfw/ip_dummynet.c Wed Jun 8 04:54:22 2011 (r222850)
+++ stable/8/sys/netinet/ipfw/ip_dummynet.c Wed Jun 8 04:57:14 2011 (r222851)
@@ -1044,7 +1044,7 @@ config_red(struct dn_fsk *fs)
fs->w_q = fs->fs.w_q;
fs->max_p = fs->fs.max_p;
- D("called");
+ ND("called");
/* Doing stuff that was in userland */
i = fs->sched->link.bandwidth;
s = (i <= 0) ? 0 :
@@ -1108,7 +1108,7 @@ config_red(struct dn_fsk *fs)
if (dn_cfg.red_max_pkt_size < 1)
dn_cfg.red_max_pkt_size = 1500;
fs->max_pkt_size = dn_cfg.red_max_pkt_size;
- D("exit");
+ ND("exit");
return 0;
}
@@ -2173,7 +2173,7 @@ ip_dn_destroy(int last)
DN_BH_WLOCK();
if (last) {
- printf("%s removing last instance\n", __FUNCTION__);
+ ND("removing last instance\n");
ip_dn_ctl_ptr = NULL;
ip_dn_io_ptr = NULL;
}
@@ -2253,13 +2253,13 @@ unload_dn_sched(struct dn_alg *s)
struct dn_alg *tmp, *r;
int err = EINVAL;
- D("called for %s", s->name);
+ ND("called for %s", s->name);
DN_BH_WLOCK();
SLIST_FOREACH_SAFE(r, &dn_cfg.schedlist, next, tmp) {
if (strcmp(s->name, r->name) != 0)
continue;
- D("ref_count = %d", r->ref_count);
+ ND("ref_count = %d", r->ref_count);
err = (r->ref_count != 0) ? EBUSY : 0;
if (err == 0)
SLIST_REMOVE(&dn_cfg.schedlist, r, dn_alg, next);
More information about the svn-src-stable-8
mailing list