diff options
| author | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2006-01-30 22:45:43 +0000 |
|---|---|---|
| committer | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2006-01-30 22:45:43 +0000 |
| commit | 87e9d284dc8735e3627397db34a559e4c3b4738f (patch) | |
| tree | d5d70850927fbdacb15436d53fd38c98680f7273 | |
| parent | bc0dd76f3e5efba97da8291b215f36af479f66f4 (diff) | |
Notes
| -rw-r--r-- | sys/geom/raid3/g_raid3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/geom/raid3/g_raid3.c b/sys/geom/raid3/g_raid3.c index 4cdb409a9d8c..6cf7fbdfcaaf 100644 --- a/sys/geom/raid3/g_raid3.c +++ b/sys/geom/raid3/g_raid3.c @@ -2819,7 +2819,7 @@ g_raid3_create(struct g_class *mp, const struct g_raid3_metadata *md) uma_zone_set_max(sc->sc_zone_64k, g_raid3_n64k); sc->sc_zone_16k = uma_zcreate("gr3:16k", 16384, NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0); - uma_zone_set_max(sc->sc_zone_64k, g_raid3_n16k); + uma_zone_set_max(sc->sc_zone_16k, g_raid3_n16k); sc->sc_zone_4k = uma_zcreate("gr3:4k", 4096, NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0); uma_zone_set_max(sc->sc_zone_4k, g_raid3_n4k); |
