View | Details | Raw Unified | Return to bug 201185 | Differences between
and this patch

Collapse All | Expand All

(-)sys/geom/eli/g_eli.c (-3 / +3 lines)
Lines 730-739 Link Here
730
	sc = malloc(sizeof(*sc), M_ELI, M_WAITOK | M_ZERO);
730
	sc = malloc(sizeof(*sc), M_ELI, M_WAITOK | M_ZERO);
731
	gp->start = g_eli_start;
731
	gp->start = g_eli_start;
732
	/*
732
	/*
733
	 * Spoiling cannot happen actually, because we keep provider open for
733
	 * Spoiling can happen even though we have the provider open
734
	 * writing all the time or provider is read-only.
734
	 * exclusively, e.g. through media change events.
735
	 */
735
	 */
736
	gp->spoiled = g_eli_orphan_spoil_assert;
736
	gp->spoiled = g_eli_orphan;
737
	gp->orphan = g_eli_orphan;
737
	gp->orphan = g_eli_orphan;
738
	gp->dumpconf = g_eli_dumpconf;
738
	gp->dumpconf = g_eli_dumpconf;
739
	/*
739
	/*

Return to bug 201185