svn commit: r252011 - head/sys/geom/mirror
Scott Long
scottl at FreeBSD.org
Wed Jun 19 23:09:11 UTC 2013
Author: scottl
Date: Wed Jun 19 23:09:10 2013
New Revision: 252011
URL: http://svnweb.freebsd.org/changeset/base/252011
Log:
Fix a mystery cut-n-paste corruption from the previous commit.
Submitted by: Brenden Fabeny
Modified:
head/sys/geom/mirror/g_mirror.c
Modified: head/sys/geom/mirror/g_mirror.c
==============================================================================
--- head/sys/geom/mirror/g_mirror.c Wed Jun 19 21:52:32 2013 (r252010)
+++ head/sys/geom/mirror/g_mirror.c Wed Jun 19 23:09:10 2013 (r252011)
@@ -2040,7 +2040,7 @@ g_mirror_launch_provider(struct g_mirror
pp->stripeoffset = 0;
/* Splitting of unmapped BIO's could work but isn't implemented now */
- if (sc->sc_balance != G_MIRROR_BALANCE_SPLIT)
+ if (sc->sc_balance != G_MIRROR_BALANCE_SPLIT)
pp->flags |= G_PF_ACCEPT_UNMAPPED;
LIST_FOREACH(disk, &sc->sc_disks, d_next) {
More information about the svn-src-head
mailing list