diff options
| author | Justin Hibbits <jhibbits@FreeBSD.org> | 2025-03-26 14:43:14 +0000 |
|---|---|---|
| committer | Justin Hibbits <jhibbits@FreeBSD.org> | 2025-03-26 14:55:24 +0000 |
| commit | c11b701915116bf512f3d77dfdac7a867f51ca0a (patch) | |
| tree | 02c6544d12fa14ac224e209a7f2d6a66462b559f /sys/geom | |
| parent | d5c804138845a1c8d81fbbce48de676806de32e6 (diff) | |
Diffstat (limited to 'sys/geom')
| -rw-r--r-- | sys/geom/geom.h | 2 | ||||
| -rw-r--r-- | sys/geom/raid/g_raid.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/geom/geom.h b/sys/geom/geom.h index 0eb6775701fd..dcd6f793f9f7 100644 --- a/sys/geom/geom.h +++ b/sys/geom/geom.h @@ -417,7 +417,7 @@ g_free(void *ptr) static moduledata_t name##_mod = { \ #name, g_modevent, &class \ }; \ - DECLARE_MODULE(name, name##_mod, SI_SUB_DRIVERS, SI_ORDER_SECOND); + DECLARE_MODULE(name, name##_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD); int g_is_geom_thread(struct thread *td); diff --git a/sys/geom/raid/g_raid.c b/sys/geom/raid/g_raid.c index 6938491d696c..a483622d14a5 100644 --- a/sys/geom/raid/g_raid.c +++ b/sys/geom/raid/g_raid.c @@ -2571,5 +2571,5 @@ static moduledata_t g_raid_mod = { g_modevent, &g_raid_class }; -DECLARE_MODULE(g_raid, g_raid_mod, SI_SUB_DRIVERS, SI_ORDER_THIRD); +DECLARE_MODULE(g_raid, g_raid_mod, SI_SUB_DRIVERS, SI_ORDER_FOURTH); MODULE_VERSION(geom_raid, 0); |
