View | Details | Raw Unified | Return to bug 200740
Collapse All | Expand All

(-)w/sys/geom/geom_subr.c (-2 / +2 lines)
Lines 533-540 g_new_provider_event(void *arg, int flag) Link Here
533
		return;
533
		return;
534
	pp = arg;
534
	pp = arg;
535
	G_VALID_PROVIDER(pp);
535
	G_VALID_PROVIDER(pp);
536
	KASSERT(!(pp->flags & G_PF_WITHER),
536
	if ((pp->flags & G_PF_WITHER) != 0)
537
	    ("g_new_provider_event but withered"));
537
		return;
538
	LIST_FOREACH_SAFE(cp, &pp->consumers, consumers, next_cp) {
538
	LIST_FOREACH_SAFE(cp, &pp->consumers, consumers, next_cp) {
539
		if ((cp->flags & G_CF_ORPHAN) == 0 &&
539
		if ((cp->flags & G_CF_ORPHAN) == 0 &&
540
		    cp->geom->attrchanged != NULL)
540
		    cp->geom->attrchanged != NULL)

Return to bug 200740