Module Name: src Committed By: jruoho Date: Mon Aug 16 17:29:52 UTC 2010
Modified Files: src/sys/kern: subr_autoconf.c Log Message: >From jmcneill@: call config_deferred(9) in rescan_with_cfdata(). To generate a diff of this commit: cvs rdiff -u -r1.208 -r1.209 src/sys/kern/subr_autoconf.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/kern/subr_autoconf.c diff -u src/sys/kern/subr_autoconf.c:1.208 src/sys/kern/subr_autoconf.c:1.209 --- src/sys/kern/subr_autoconf.c:1.208 Sat Jun 26 06:43:13 2010 +++ src/sys/kern/subr_autoconf.c Mon Aug 16 17:29:52 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: subr_autoconf.c,v 1.208 2010/06/26 06:43:13 tsutsui Exp $ */ +/* $NetBSD: subr_autoconf.c,v 1.209 2010/08/16 17:29:52 jruoho Exp $ */ /* * Copyright (c) 1996, 2000 Christopher G. Demetriou @@ -77,7 +77,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: subr_autoconf.c,v 1.208 2010/06/26 06:43:13 tsutsui Exp $"); +__KERNEL_RCSID(0, "$NetBSD: subr_autoconf.c,v 1.209 2010/08/16 17:29:52 jruoho Exp $"); #ifdef _KERNEL_OPT #include "opt_ddb.h" @@ -832,6 +832,8 @@ (*d->dv_cfattach->ca_rescan)(d, cfdata_ifattr(cf1), cf1->cf_loc); + + config_deferred(d); } } deviter_release(&di);